Merge the two fonts and return the result. See Style.merge for more information.
Style.merge
static Font? merge(Font? a, Font? b) { if (a == null) return b; if (b == null) return a; return Font._merge(a, b); }