PaymentLinksResourceCustomTextAfterSubmit.fromJson constructor

PaymentLinksResourceCustomTextAfterSubmit.fromJson(
  1. Object? json
)

Implementation

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