FFGoogleNavBarItem constructor
FFGoogleNavBarItem({
- FFColor? backgroundColor,
- FFGradient? gradient,
- bool? customTextStyle,
- FFText? textStyle,
Implementation
factory FFGoogleNavBarItem({
FFColor? backgroundColor,
FFGradient? gradient,
$core.bool? customTextStyle,
FFText? textStyle,
}) {
final result = create();
if (backgroundColor != null) result.backgroundColor = backgroundColor;
if (gradient != null) result.gradient = gradient;
if (customTextStyle != null) result.customTextStyle = customTextStyle;
if (textStyle != null) result.textStyle = textStyle;
return result;
}