CustomContainer constructor
CustomContainer({
- Key? key,
- required int position,
- double? height,
- double? width,
- required Widget child,
- Color? activeColor,
- Color? inActiveColor,
- EdgeInsets? margin,
- EdgeInsets? padding,
- BorderRadius? borderRadius,
- List<
BoxShadow> ? boxShadow, - DecorationImage? backImage,
- LinearGradient? gradient,
- Border? border,
Implementation
CustomContainer(
{Key? key,
required this.position,
this.height,
this.width,
required this.child,
this.activeColor,
this.inActiveColor,
this.margin,
this.padding,
this.borderRadius,
this.boxShadow,
this.backImage,
this.gradient,
this.border})
: super(key: key);