Rtm constructor

Rtm(
  1. String _token, {
  2. bool dumpUnhandle = false,
  3. Duration pingDuration = const Duration(seconds: 12),
})

Implementation

Rtm(
  this._token, {
  bool dumpUnhandle = false,
  Duration pingDuration = const Duration(seconds: 12),
})  : _handlers = <String, RtmHandler>{},
      _dumpUnhandle = dumpUnhandle,
      _pingDuration = pingDuration;