Client constructor

Client({
  1. required String uri,
  2. required WdDio c,
  3. required Auth auth,
  4. bool debug = false,
})

Implementation

Client({
  required this.uri,
  required this.c,
  required this.auth,
  this.debug = false,
});