animationSpeed property

double? get animationSpeed

Получение скорости проигрывания анимации модели. Если null, то используется значение из стилей.

Implementation

double? get animationSpeed {
  _COptional_float res = _CAnimationSettings_animationSpeed(_CAnimationSettingsMakeDefault().._impl=_self);
  return res._toDart();
}
set animationSpeed (double? speed)

Implementation

set animationSpeed(double? speed) {
  var _a1 = speed._copyFromDartTo_COptional_float();
  void res = _CAnimationSettings_setAnimationSpeed_COptional_float(_CAnimationSettingsMakeDefault().._impl=_self, _a1);
  return res;
}