LinearGradient constructor

LinearGradient({
  1. double? red,
  2. double? green,
  3. double? blue,
  4. double? alpha,
  5. double? angle,
  6. List<GradientStop>? stops,
})

Implementation

LinearGradient({
  this.red,
  this.green,
  this.blue,
  this.alpha,
  this.angle,
  this.stops,
});