overrideWith static method

Implementation

static NomoOutlineContainerColorData overrideWith(
    NomoOutlineContainerColorData base,
    [NomoOutlineContainerColorDataNullable? override]) {
  return NomoOutlineContainerColorData(
    foreground: override?.foreground ?? base.foreground,
    background: override?.background ?? base.background,
    shape: override?.shape ?? base.shape,
    border: override?.border ?? base.border,
  );
}