PageBlockChatLink constructor

const PageBlockChatLink({
  1. required String title,
  2. ChatPhotoInfo? photo,
  3. required String username,
})

A link to a chat

Implementation

const PageBlockChatLink({
  required this.title,
  this.photo,
  required this.username,
});