merge method
Merge another token into this one (right side wins)
Implementation
@override
FlyFontToken merge(FlyToken<List<String>> other) {
if (other is! FlyFontToken) return this;
return copyWith(
sans: other.sans,
serif: other.serif,
mono: other.mono,
extras: {...extras, ...other.extras},
);
}