DDSTab constructor

DDSTab({
  1. String? text,
  2. Widget? child,
  3. Widget? icon,
  4. EdgeInsetsGeometry? iconMargin,
  5. double? height,
  6. TextStyle? textStyle,
  7. Key? key,
})

Implementation

DDSTab({
  this.text,
  this.child,
  this.icon,
  this.iconMargin,
  this.height,
  this.textStyle,
  this.key,
}) : assert(text != null || child != null || icon != null);