OutlineDecoration constructor

const OutlineDecoration({
  1. Key? key,
  2. Widget? child,
  3. bool showTop = true,
  4. bool showBottom = true,
  5. bool showLeft = true,
  6. bool showRight = true,
})

Implementation

const OutlineDecoration({
  super.key,
  this.child,
  this.showTop = true,
  this.showBottom = true,
  this.showLeft = true,
  this.showRight = true,
});