MessageSponsor constructor

const MessageSponsor({
  1. required MessageSponsorType type,
  2. ChatPhotoInfo? photo,
  3. required String info,
})

Information about the sponsor of a message

Implementation

const MessageSponsor({
  required this.type,
  this.photo,
  required this.info,
});