gradientTo method

VxAnimatedBox gradientTo({
  1. required Color to,
  2. List<double>? stops,
})
inherited

Implementation

T gradientTo({required Color to, List<double>? stops}) => _gradientIt(
    child: _childToGradient,
    gradient: LinearGradient(colors: [Vx.gray100, to], stops: stops));