merge method
Returns a new NumberOptions that prefers other's non-null settings.
Implementation
NumberOptions merge(NumberOptions other) => NumberOptions(
defaultFormat: other.defaultFormat ?? defaultFormat,
defaultLocale: other.defaultLocale ?? defaultLocale,
tryFormattedFirst: other.tryFormattedFirst,
);