MidtransCustomer constructor

MidtransCustomer(
  1. {@required String customerIdentifier,
  2. @required String phone,
  3. @required String firstName,
  4. @required String lastName,
  5. @required String email,
  6. MidtransCustomerAddress shippingAddress,
  7. MidtransCustomerAddress billingAddress}
)

Implementation

MidtransCustomer({
  @required this.customerIdentifier,
  @required this.phone,
  @required this.firstName,
  @required this.lastName,
  @required this.email,
  this.shippingAddress,
  this.billingAddress,
});