MonoNewCustomerModel constructor

const MonoNewCustomerModel({
  1. required String name,
  2. required String email,
  3. MonoNewCustomerIdentity? identity,
})

Implementation

const MonoNewCustomerModel({
  required this.name,
  required this.email,
  this.identity,
});