getById method

Future<GetAccountResponseMessage> getById(
  1. String accountId,
  2. String userToken
)

Retorna as informações de uma conta

Id da Conta Token de Usuário

Implementation

Future<GetAccountResponseMessage> getById(String accountId, String userToken) async {
  var result = await apiResource.getById(id: accountId, apiUserToken: userToken);
  return GetAccountResponseMessage.fromMap(result);
}