Height constructor

Height({
  1. required String type,
  2. required String unit,
  3. required double value,
})

Implementation

Height({
  required this.type,
  required this.unit,
  required this.value,
});