ChatInfoQuote constructor

ChatInfoQuote({
  1. ChatItem? original,
  2. required UserId author,
  3. required PreciseDateTime at,
  4. required ChatInfoAction? action,
})

Implementation

ChatInfoQuote({
  super.original,
  required super.author,
  required super.at,
  required this.action,
});