CustomerInfo constructor

CustomerInfo({
  1. required String id,
  2. required String customerId,
  3. String? email,
  4. String? name,
})

Implementation

CustomerInfo({
  required this.id,
  required this.customerId,
  this.email,
  this.name,
});