override method

NomoAppBarThemeData override(
  1. [NomoAppBarThemeDataNullable? override]
)

Implementation

NomoAppBarThemeData override([NomoAppBarThemeDataNullable? override]) {
  return NomoAppBarThemeData(
    borderRadius: override?.borderRadius ?? borderRadius,
    backgroundColor: override?.backgroundColor ?? backgroundColor,
    spacing: override?.spacing ?? spacing,
    topInset: override?.topInset ?? topInset,
    height: override?.height ?? height,
    elevation: override?.elevation ?? elevation,
  );
}