merge static method

Font? merge(
  1. Font? a,
  2. Font? b
)

Merge the two fonts and return the result. See Style.merge for more information.

Implementation

static Font? merge(Font? a, Font? b) {
  if (a == null) return b;
  if (b == null) return a;
  return Font._merge(a, b);
}