merge method
Creates a copy of this WxTextTileThemeData but with the given fields replaced with the new values.
Implementation
WxTextTileThemeData merge(WxTextTileThemeData? other) {
// if null return current object
if (other == null) return this;
return copyWith(
style: other.style,
);
}