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