MandateAuBecsDebit.fromJson constructor

MandateAuBecsDebit.fromJson(
  1. Object? json
)

Implementation

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