Transport constructor

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

Implementation

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