overrideWith static method

Implementation

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