Client constructor

Client(
  1. String? host,
  2. int? port,
  3. String basePath
)

Implementation

Client(this.host, this.port, this.basePath) {
  if (host == null) throw ArgumentError("'host' must not be null");
}