Input$PaymentInput constructor

Input$PaymentInput({
  1. required String name,
  2. String? code,
  3. Enum$PaymentTypeEnum? paymentType,
  4. String? materialIcon,
  5. Input$PaymentImagesInput? images,
})

Implementation

factory Input$PaymentInput({
  required String name,
  String? code,
  Enum$PaymentTypeEnum? paymentType,
  String? materialIcon,
  Input$PaymentImagesInput? images,
}) =>
    Input$PaymentInput._({
      r'name': name,
      if (code != null) r'code': code,
      if (paymentType != null) r'paymentType': paymentType,
      if (materialIcon != null) r'materialIcon': materialIcon,
      if (images != null) r'images': images,
    });