opacity static method

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

Opacity value are 0-100 to match after effects

Implementation

static ValueDelegate<int> opacity(List<String> keyPath,
        {int? value,
        int Function(LottieFrameInfo<int>)? callback,
        int? relative}) =>
    _int(keyPath, LottieProperty.opacity, value, callback, relative);