GemShopSpawnEventCatalogItemSchema constructor

GemShopSpawnEventCatalogItemSchema({
  1. required String code,
  2. required String name,
  3. required MapContentType contentType,
  4. required String contentCode,
  5. required int duration,
  6. required int price,
})

Returns a new GemShopSpawnEventCatalogItemSchema instance.

Implementation

GemShopSpawnEventCatalogItemSchema({
  required this.code,
  required this.name,
  required this.contentType,
  required this.contentCode,
  required this.duration,
  required this.price,
});