lerp method

Linearly interpolate between two UserListViewThemeData themes.

All the properties must be non-null.

Implementation

MessageSearchListViewThemeData lerp(
  MessageSearchListViewThemeData a,
  MessageSearchListViewThemeData b,
  double t,
) =>
    MessageSearchListViewThemeData(
      backgroundColor: Color.lerp(a.backgroundColor, b.backgroundColor, t),
    );