BackgroundFillGradient constructor

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

Describes a gradient fill of a background

Implementation

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