SystemMessage constructor

const SystemMessage({
  1. User author,
  2. int? createdAt,
  3. required String id,
  4. Map<String, dynamic>? metadata,
  5. String? remoteId,
  6. Message? repliedMessage,
  7. String? roomId,
  8. bool? showStatus,
  9. Status? status,
  10. required String text,
  11. MessageType? type,
  12. int? updatedAt,
})

Implementation

const factory SystemMessage({
  User author,
  int? createdAt,
  required String id,
  Map<String, dynamic>? metadata,
  String? remoteId,
  Message? repliedMessage,
  String? roomId,
  bool? showStatus,
  Status? status,
  required String text,
  MessageType? type,
  int? updatedAt,
}) = _SystemMessage;