OutlinedContainer constructor

const OutlinedContainer({
  1. Key? key,
  2. required Widget child,
  3. Color? borderColor,
  4. Color? backgroundColor,
  5. Clip clipBehavior = Clip.antiAlias,
  6. BorderRadiusGeometry? borderRadius,
  7. BorderStyle? borderStyle,
  8. double? borderWidth,
  9. List<BoxShadow>? boxShadow,
  10. EdgeInsetsGeometry? padding,
  11. double? surfaceOpacity,
  12. double? surfaceBlur,
  13. double? width,
  14. double? height,
  15. Duration? duration,
})

Implementation

const OutlinedContainer({
  super.key,
  required this.child,
  this.borderColor,
  this.backgroundColor,
  this.clipBehavior = Clip.antiAlias,
  this.borderRadius,
  this.borderStyle,
  this.borderWidth,
  this.boxShadow,
  this.padding,
  this.surfaceOpacity,
  this.surfaceBlur,
  this.width,
  this.height,
  this.duration,
});