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