copyWith method
Implementation
NomoBottomBarThemeData copyWith([NomoBottomBarThemeDataNullable? override]) {
return NomoBottomBarThemeData(
foreground: override?.foreground ?? foreground,
background: override?.background ?? background,
selectedForeground: override?.selectedForeground ?? selectedForeground,
itemBorderRadius: override?.itemBorderRadius ?? itemBorderRadius,
borderRadius: override?.borderRadius ?? borderRadius,
height: override?.height ?? height,
spacing: override?.spacing ?? spacing,
iconSize: override?.iconSize ?? iconSize,
padding: override?.padding ?? padding,
elevation: override?.elevation ?? elevation,
itemPadding: override?.itemPadding ?? itemPadding,
);
}