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