Input$PaymentInput constructor
Input$PaymentInput({
- required String name,
- String? code,
- Enum$PaymentTypeEnum? paymentType,
- String? materialIcon,
- 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,
});