CustomTab constructor

const CustomTab({
  1. Key? key,
  2. List<Widget>? children,
  3. Widget child = const SizedBox.shrink(),
  4. bool topSafeArea = true,
  5. bool bottomSafeArea = true,
  6. EdgeInsets? padding,
  7. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.start,
})

Implementation

const CustomTab({
  super.key,
  this.children,
  this.child = const SizedBox.shrink(),
  this.topSafeArea = true,
   this.bottomSafeArea = true,
  this.padding,
  this.crossAxisAlignment = CrossAxisAlignment.start
});