override method

NomoBottomBarThemeData override(
  1. [NomoBottomBarThemeDataNullable? override]
)

Implementation

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