copyWith method

ChannelListViewThemeData copyWith({
  1. Color? backgroundColor,
})

Copies this ChannelListViewThemeData to another.

Implementation

ChannelListViewThemeData copyWith({
  Color? backgroundColor,
}) =>
    ChannelListViewThemeData(
      backgroundColor: backgroundColor ?? this.backgroundColor,
    );