Input$CreateCustomerInput constructor

Input$CreateCustomerInput({
  1. required String phone,
  2. required String country,
})

Implementation

factory Input$CreateCustomerInput({
  required String phone,
  required String country,
}) =>
    Input$CreateCustomerInput._({
      r'phone': phone,
      r'country': country,
    });