OutlinedContainer constructor

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

Implementation

const OutlinedContainer({
  super.key,
  required this.child,
  this.dashedBorder = false,
  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,
});