MokuroCatalog constructor

MokuroCatalog(
  1. {required String name,
  2. required String url,
  3. required int order,
  4. Id? id}
)

Initialise this object.

Implementation

MokuroCatalog({
  required this.name,
  required this.url,
  required this.order,
  this.id,
});