lerp method

Linearly interpolate between two UserListViewThemeData themes.

All the properties must be non-null.

Implementation

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