getClient method
Implementation
Dio getClient(String name) {
if (!_dioClients.containsKey(name)) {
throw Exception("Dio client '$name' not found. Did you initialize it?");
}
return _dioClients[name]!;
}
Dio getClient(String name) {
if (!_dioClients.containsKey(name)) {
throw Exception("Dio client '$name' not found. Did you initialize it?");
}
return _dioClients[name]!;
}