statistics property

Map<String, dynamic> get statistics

Get client statistics

Implementation

Map<String, dynamic> get statistics {
  return {
    'state': _state,
    'clientId': clientId,
    'transport': transport,
    'subscriptions': _subscriptions.length,
    'advice': _advice,
    'dispatcher': _dispatcher.statistics,
  };
}