UserListModel constructor

UserListModel({
  1. bool? vidoeEnabled,
  2. String? role,
  3. String? clientId,
  4. bool? videoMuted,
  5. Permissions? permissions,
  6. String? name,
  7. bool? audioMuted,
  8. bool? audioEnabled,
  9. String? userRef,
})

Implementation

UserListModel({
  bool? vidoeEnabled,
  String? role,
  String? clientId,
  bool? videoMuted,
  //Data? data,
  Permissions? permissions,
  String? name,
  bool? audioMuted,
  bool? audioEnabled,
  String? userRef,
}) {
  _vidoeEnabled = vidoeEnabled;
  _role = role;
  _clientId = clientId;
  _videoMuted = videoMuted;
  //  _data = data;
  _permissions = permissions;
  _name = name;
  _audioMuted = audioMuted;
  _audioEnabled = audioEnabled;
  _userRef = userRef;
}