TestClient constructor
Creates instance of TestClient.
Implementation
TestClient({
this.host = 'localhost',
this.port = 8282,
}) : assert(host.isNotEmpty, 'host cannot be empty'),
assert(port != 0, 'port cannot be 0.');
Creates instance of TestClient.
TestClient({
this.host = 'localhost',
this.port = 8282,
}) : assert(host.isNotEmpty, 'host cannot be empty'),
assert(port != 0, 'port cannot be 0.');