PaymentLinksResourceCustomFieldsLabel.fromJson constructor

PaymentLinksResourceCustomFieldsLabel.fromJson(
  1. 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));
}