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