copyWith method

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

Copies this MessageSearchListViewThemeData to another.

Implementation

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