Top constructor

Top({
  1. required TopType topType,
  2. AccessoriesType accessoriesType = AccessoriesType.blank,
  3. HatColor hatColor = HatColor.black,
  4. HairColor hairColor = HairColor.black,
  5. required FacialHair facialHair,
})

Implementation

Top({
  required this.topType,
  this.accessoriesType = AccessoriesType.blank,
  this.hatColor = HatColor.black,
  this.hairColor = HairColor.black,
  required this.facialHair,
});