ChatUserModel constructor

ChatUserModel(
  1. String id,
  2. String name, {
  3. bool online = false,
  4. List<String> apnsTokens = const [],
  5. String? reference,
})

Implementation

ChatUserModel(
  this.id,
  this.name, {
  this.online = false,
  this.apnsTokens = const [],
  this.reference,
});