Details constructor

Details({
  1. required String? type,
  2. required String? view,
  3. required bool? header,
  4. required bool? amountValue,
  5. required String? label,
})

Implementation

Details({
  required this.type,
  required this.view,
  required this.header,
  required this.amountValue,
  required this.label,
});