CustomerInfo constructor

CustomerInfo({
  1. required String status,
  2. required String generated,
  3. required bool present,
  4. required String id,
  5. required String extId,
})

Implementation

CustomerInfo({
  required this.status,
  required this.generated,
  required this.present,
  required this.id,
  required this.extId,
});