copyWith method

  1. @override
WxTextTileThemeData copyWith({
  1. WxTextTileStyle? style,
})
override

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),
  );
}