Transport constructor

Transport({
  1. required String? url,
  2. bool? canReconnect,
  3. int? maxRetryCount = 1,
  4. bool? isSecured = false,
})

Implementation

Transport({required this.url, this.canReconnect, this.maxRetryCount = 1, this.isSecured = false});