toTab method
Implementation
TTab<dynamic> toTab([dynamic effectiveValue]) {
return TTab<dynamic>(
value: effectiveValue ?? value ?? title,
text: title,
icon: icon,
isEnabled: isEnabled,
isActive: isActive,
data: data,
);
}