gradientColor static method

ValueDelegate<List<Color>> gradientColor(
  1. List<String> keyPath, {
  2. List<Color>? value,
  3. List<Color> callback(
    1. LottieFrameInfo<List<Color>>
    )?,
})

Implementation

static ValueDelegate<List<Color>> gradientColor(List<String> keyPath,
        {List<Color>? value,
        List<Color> Function(LottieFrameInfo<List<Color>>)? callback}) =>
    ValueDelegate._(keyPath, LottieProperty.gradientColor, value, callback);