copyWith method

Implementation

NomoAppBarThemeData copyWith([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,
  );
}