GradientLayout constructor

const GradientLayout({
  1. Key? key,
  2. Widget? child,
  3. double? width,
  4. double? height,
  5. Color? backgroundColor,
  6. List<Color>? gradientColors,
  7. EdgeInsetsGeometry? margin,
  8. AlignmentGeometry? begin,
  9. AlignmentGeometry? end,
})

Implementation

const GradientLayout({
  super.key,
  this.child,
  this.width,
  this.height,
  this.backgroundColor,
  this.gradientColors,
  this.margin,
  this.begin,
  this.end,
});