gradientVia method

VxBox gradientVia(
  1. {required Color from,
  2. required Color via,
  3. required Color to,
  4. List<double>? stops}
)
inherited

Implementation

T gradientVia(
        {required Color from,
        required Color via,
        required Color to,
        List<double>? stops}) =>
    _gradientIt(
        child: _childToGradient,
        gradient: LinearGradient(colors: [from, via, to], stops: stops));