Animations constructor

const Animations({
  1. required List<Animation> animations,
  2. dynamic extra,
  3. int? clientId,
})

Represents a list of animations

Implementation

const Animations({
  required this.animations,
  this.extra,
  this.clientId,
});