PaymentLinksResourceCustomFieldsLabel.fromJson constructor
PaymentLinksResourceCustomFieldsLabel.fromJson(
- Object? json
Implementation
factory PaymentLinksResourceCustomFieldsLabel.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return PaymentLinksResourceCustomFieldsLabel(
custom: map['custom'] == null ? null : (map['custom'] as String));
}