Future<void> getAccountById() async {
try {
List<Account> getById = await getAll();
print("DIGITE O ID DA CONTA:");
String id = stdin.readLineSync().toString();
print(getById.where((value) => value.id == id));
} catch (e) {
_streamController.add("Algo deu errado: ${e.toString()}");
}
}