readBankAccountByV1Id method

Future<BankAccount> readBankAccountByV1Id({
  1. required String v1BankAccountId,
  2. String? authToken,
})

Returns details of a BankAccount identified by V1 bank account ID.

Implementation

Future<BankAccount> readBankAccountByV1Id({
  required String v1BankAccountId,
  String? authToken,
}) async {

  authToken ??= authenticationService.getCachedToken()?.accessToken;

  Map<String, String> headers = {
    "Authorization": "Bearer ${authToken ?? ""}",
    'Content-Type': 'application/json; charset=UTF-8',
    'Accept': 'application/json',

  };

  Uri endpoint = Uri.https(
      baseUrl, "/v2/bank-accounts/by-v1-id/$v1BankAccountId");

  //print (endpoint.toString());

  var response = await
  http.get(endpoint,  headers: headers);

  if (response.statusCode == 200) {
    print (jsonDecode(response.body));
    return BankAccountResponse.fromJson(jsonDecode(response.body)).bankAccount!;
  }
  else {
    print (response.body);
    throw BankAccountException(statusCode: response.statusCode, message: BankAccountResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
  }
}