ZeroTab constructor

const ZeroTab({
  1. Key? key,
  2. Widget? label,
  3. Widget? icon,
  4. double? height,
})

Implementation

const ZeroTab({
  Key? key,
  this.label,
  this.icon,
  this.height,
})  : assert(label != null || icon != null),
      super(key: key);