MessageAnimation constructor

const MessageAnimation({
  1. required Animation animation,
  2. required FormattedText caption,
  3. required bool hasSpoiler,
  4. required bool isSecret,
})

An animation message (GIF-style).

Implementation

const MessageAnimation({
  required this.animation,
  required this.caption,
  required this.hasSpoiler,
  required this.isSecret,
});