RoundedOutlinedBorder constructor

const RoundedOutlinedBorder({
  1. Key? key,
  2. bool showTopLeft = true,
  3. bool showTopRight = true,
  4. bool showBottomLeft = true,
  5. bool showBottomRight = true,
  6. bool clip = false,
  7. required Widget? child,
})

Implementation

const RoundedOutlinedBorder({
  super.key,
  this.showTopLeft = true,
  this.showTopRight = true,
  this.showBottomLeft = true,
  this.showBottomRight = true,
  this.clip = false,
  required this.child,
});