gradientFrom method

VxBox gradientFrom({
  1. required Color from,
  2. List<double>? stops,
})
inherited

Implementation

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