copyWith method

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

Copies this ChannelListViewThemeData to another.

Implementation

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