ChatShared constructor

const ChatShared({
  1. required int requestId,
  2. required int chatId,
  3. String? title,
  4. String? username,
  5. List<PhotoSize>? photo,
})

Creates a new ChatShared object.

Implementation

const ChatShared({
  required this.requestId,
  required this.chatId,
  this.title,
  this.username,
  this.photo,
});