onAnimationUpdated property
Event for animation that has been updated.
Implementation
Stream<Animation> get onAnimationUpdated => _client.onEvent
.where((event) => event.name == 'Animation.animationUpdated')
.map((event) => Animation.fromJson(
event.parameters['animation'] as Map<String, dynamic>));