Input$CreateAnyQRCodeCheckoutInput constructor

Input$CreateAnyQRCodeCheckoutInput({
  1. required String approve_url,
  2. required String cancel_url,
  3. String? first_name,
  4. String? last_name,
  5. required String merchant_id,
  6. required String phone,
  7. required String qr_code,
})

Implementation

factory Input$CreateAnyQRCodeCheckoutInput({
  required String approve_url,
  required String cancel_url,
  String? first_name,
  String? last_name,
  required String merchant_id,
  required String phone,
  required String qr_code,
}) =>
    Input$CreateAnyQRCodeCheckoutInput._({
      r'approve_url': approve_url,
      r'cancel_url': cancel_url,
      if (first_name != null) r'first_name': first_name,
      if (last_name != null) r'last_name': last_name,
      r'merchant_id': merchant_id,
      r'phone': phone,
      r'qr_code': qr_code,
    });