activeThemeId method

String? activeThemeId()

Implementation

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