copyWith method
Implementation
NomoOutlineContainerThemeData copyWith(
[NomoOutlineContainerThemeDataNullable? override]) {
return NomoOutlineContainerThemeData(
foreground: override?.foreground ?? foreground,
background: override?.background ?? background,
shape: override?.shape ?? shape,
border: override?.border ?? border,
padding: override?.padding ?? padding,
spacing: override?.spacing ?? spacing,
);
}