copyWith method
Creates a copy of this WxTileThemeData but with the given fields replaced with the new values.
Implementation
@override
WxTileThemeData copyWith({WxTileStyle? style}) {
return WxTileThemeData(
style: this.style.merge(style),
);
}