UserSupportInfo constructor

const UserSupportInfo({
  1. required FormattedText message,
  2. required String author,
  3. required int date,
  4. dynamic extra,
  5. int? clientId,
})

Contains custom information about the user

Implementation

const UserSupportInfo({
  required this.message,
  required this.author,
  required this.date,
  this.extra,
  this.clientId,
});