AccountBankAccountOwnershipVerification.fromJson constructor

AccountBankAccountOwnershipVerification.fromJson(
  1. Object? json
)

Implementation

factory AccountBankAccountOwnershipVerification.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return AccountBankAccountOwnershipVerification(
      files: map['files'] == null
          ? null
          : (map['files'] as List<Object?>)
              .map((el) => (el as String))
              .toList());
}