Host constructor

const Host({
  1. required String url,
  2. int? port,
  3. String scheme = 'https',
  4. CallType? callType,
})

Constructs a Host instance with the provided parameters.

Implementation

const Host(
    {required this.url, this.port, this.scheme = 'https', this.callType});