BusinessChatLink constructor

BusinessChatLink({
  1. required String link,
  2. FormattedText? text,
  3. required String title,
  4. required int viewCount,
})

Implementation

BusinessChatLink({
  required this.link,
  this.text,
  required this.title,
  required this.viewCount,
});