overrideWith static method
NomoAppBarColorData
overrideWith(
- NomoAppBarColorData base, [
- NomoAppBarColorDataNullable? override
Implementation
static NomoAppBarColorData overrideWith(NomoAppBarColorData base,
[NomoAppBarColorDataNullable? override]) {
return NomoAppBarColorData(
borderRadius: override?.borderRadius ?? base.borderRadius,
backgroundColor: override?.backgroundColor ?? base.backgroundColor,
);
}