SingContainerLinearGradient constructor

const SingContainerLinearGradient({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. double radius = 0,
  5. List<Color> colors = const [],
  6. AlignmentGeometry begin = Alignment.topCenter,
  7. AlignmentGeometry end = Alignment.bottomCenter,
  8. EdgeInsetsGeometry? margin,
  9. EdgeInsetsGeometry? padding,
  10. Widget? child,
})

Implementation

const SingContainerLinearGradient({
  super.key,
  this.width,
  this.height,
  this.radius = 0,
  this.colors = const [],
  this.begin = Alignment.topCenter,
  this.end = Alignment.bottomCenter,
  this.margin,
  this.padding,
  this.child,
});