Hair constructor

const Hair({
  1. required String length,
  2. required String type,
  3. required String color,
})

Implementation

const Hair({
  required this.length,
  required this.type,
  required this.color,
});