GradientContainerBase constructor

const GradientContainerBase({
  1. Key? key,
  2. Widget? child,
  3. BorderRadius? borderRadius,
  4. double? width,
  5. double? height,
  6. EdgeInsetsGeometry? padding,
  7. EdgeInsetsGeometry? margin,
  8. BoxShape shape = BoxShape.rectangle,
  9. VoidCallback? onTap,
  10. MouseCursor? mouseCursor,
})

Implementation

const GradientContainerBase({
  super.key,
  this.child,
  this.borderRadius,
  this.width,
  this.height,
  this.padding,
  this.margin,
  this.shape = BoxShape.rectangle,
  this.onTap,
  this.mouseCursor,
});