TabConfig constructor

const TabConfig({
  1. double borderRadius = 8.0,
  2. Color? backgroundColor,
  3. Color? foregroundColor,
  4. Color shadowColor = Colors.black,
})

Implementation

const TabConfig({
  this.borderRadius = 8.0,
  this.backgroundColor,
  this.foregroundColor,
  this.shadowColor = Colors.black,
});