PaymentLinksResourceCustomFieldsNumeric.fromJson constructor
PaymentLinksResourceCustomFieldsNumeric.fromJson(
- Object? json
Implementation
factory PaymentLinksResourceCustomFieldsNumeric.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return PaymentLinksResourceCustomFieldsNumeric(
maximumLength: map['maximum_length'] == null
? null
: (map['maximum_length'] as num).toInt(),
minimumLength: map['minimum_length'] == null
? null
: (map['minimum_length'] as num).toInt(),
);
}