SourceMandateNotificationBacsDebitData.fromJson constructor

SourceMandateNotificationBacsDebitData.fromJson(
  1. Object? json
)

Implementation

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