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