BackgroundFillGradient constructor

const BackgroundFillGradient({
  1. required int topColor,
  2. required int bottomColor,
  3. required int rotationAngle,
})

Constructs a BackgroundFillGradient object.

Implementation

const BackgroundFillGradient({
  required this.topColor,
  required this.bottomColor,
  required this.rotationAngle,
});