PushMessageContentAnimation constructor

const PushMessageContentAnimation({
  1. Animation? animation,
  2. required String caption,
  3. required bool isPinned,
})

An animation message (GIF-style).

Implementation

const PushMessageContentAnimation({
  this.animation,
  required this.caption,
  required this.isPinned,
});