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