getClient method

Dio getClient(
  1. String name
)

Implementation

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