Animation constructor
Animation({
- required String id,
- required String name,
- required bool pausedState,
- required String playState,
- required num playbackRate,
- required num startTime,
- required num currentTime,
- required AnimationType type,
- AnimationEffect? source,
- String? cssId,
- ViewOrScrollTimeline? viewOrScrollTimeline,
Implementation
Animation(
{required this.id,
required this.name,
required this.pausedState,
required this.playState,
required this.playbackRate,
required this.startTime,
required this.currentTime,
required this.type,
this.source,
this.cssId,
this.viewOrScrollTimeline});