Transport constructor

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

Implementation

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