transformStartOpacity static method

ValueDelegate<double> transformStartOpacity(
  1. List<String> keyPath, {
  2. double? value,
  3. double callback(
    1. LottieFrameInfo<double>
    )?,
  4. double? relative,
})

Opacity value are 0-100 to match after effects

Implementation

static ValueDelegate<double> transformStartOpacity(List<String> keyPath,
        {double? value,
        double Function(LottieFrameInfo<double>)? callback,
        double? relative}) =>
    _double(keyPath, LottieProperty.transformStartOpacity, value, callback,
        relative);