SpecialSpace constructor

const SpecialSpace({
  1. required SpecialSpaceType type,
  2. required String name,
  3. required String? count,
})

Implementation

const SpecialSpace({
  required this.type,
  required this.name,
  required this.count
});