PaymentLinksResourceCompletionBehaviorRedirect.fromJson constructor

PaymentLinksResourceCompletionBehaviorRedirect.fromJson(
  1. Object? json
)

Implementation

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