VTab constructor

const VTab({
  1. Key? key,
  2. String? text,
  3. Widget? icon,
  4. Widget? child,
  5. double? height,
})

Implementation

const VTab({
  super.key,
  this.text,
  this.icon,
  this.child,
  this.height,
});