call method

RemixTab call({
  1. Key? key,
  2. required String tabId,
  3. Widget? child,
  4. String? label,
  5. IconData? icon,
  6. bool enabled = true,
  7. MouseCursor mouseCursor = SystemMouseCursors.click,
  8. bool enableFeedback = true,
  9. FocusNode? focusNode,
  10. bool autofocus = false,
  11. ValueChanged<bool>? onFocusChange,
  12. ValueChanged<bool>? onHoverChange,
  13. ValueChanged<bool>? onPressChange,
  14. ValueWidgetBuilder<NakedTabState>? builder,
  15. String? semanticLabel,
})

Implementation

RemixTab call({
  Key? key,
  required String tabId,
  Widget? child,
  String? label,
  IconData? icon,
  bool enabled = true,
  MouseCursor mouseCursor = SystemMouseCursors.click,
  bool enableFeedback = true,
  FocusNode? focusNode,
  bool autofocus = false,
  ValueChanged<bool>? onFocusChange,
  ValueChanged<bool>? onHoverChange,
  ValueChanged<bool>? onPressChange,
  ValueWidgetBuilder<NakedTabState>? builder,
  String? semanticLabel,
}) {
  return RemixTab(
    key: key,
    style: this,
    tabId: tabId,
    child: child,
    label: label,
    icon: icon,
    enabled: enabled,
    mouseCursor: mouseCursor,
    enableFeedback: enableFeedback,
    focusNode: focusNode,
    autofocus: autofocus,
    onFocusChange: onFocusChange,
    onHoverChange: onHoverChange,
    onPressChange: onPressChange,
    builder: builder,
    semanticLabel: semanticLabel,
  );
}