User constructor

User(
  1. String _identity,
  2. Attributes _attributes,
  3. String? _friendlyName,
  4. bool _isNotifiable,
  5. bool _isOnline,
  6. bool _isSubscribed,
)

Implementation

User(
  this._identity,
  this._attributes,
  this._friendlyName,
  this._isNotifiable,
  this._isOnline,
  this._isSubscribed,
);