call method
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,
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,
);
}