tint method

T tint({
  1. Duration? delay,
  2. Duration? duration,
  3. Curve? curve,
  4. double? begin,
  5. double? end,
  6. Color? color,
})

Adds a .tint() extension to AnimateManager (Animate and AnimateList).

Implementation

T tint({
  Duration? delay,
  Duration? duration,
  Curve? curve,
  double? begin,
  double? end,
  Color? color,
}) =>
    addEffect(TintEffect(
      delay: delay,
      duration: duration,
      curve: curve,
      begin: begin,
      end: end,
      color: color,
    ));