TabBorder constructor

const TabBorder({
  1. BorderSide side = BorderSide.none,
  2. double radius = 8.0,
  3. bool inset = true,
})

Implementation

const TabBorder({
  super.side,
  this.radius = 8.0,
  this.inset = true,
});