activeAnimationId method
Implementation
String? activeAnimationId() {
if (dotLottiePlayer != null && !isDisposed) {
try {
final player = dotLottiePlayer as JSObject;
final result = player['activeAnimationId'.toJS];
return (result as JSString?)?.toDart;
} catch (e) {
return null;
}
}
return null;
}