BaseTab constructor

const BaseTab({
  1. Key? key,
  2. String? label,
  3. WrapperModel? wrapperModel,
  4. double? height,
  5. bool? rotate,
  6. int? rotateTurns,
})

Implementation

const BaseTab({
  super.key,
  this.label,
  this.wrapperModel,
  // this.customWrapperBuilder,
  this.height,
  this.rotate,
  this.rotateTurns,
});