User constructor

User(
  1. String username,
  2. String name,
  3. String image,
  4. LatLng location,
  5. int rating,
)

Implementation

User(
    this.username,
    this.name,
    this.image,
    this.location,
    this.rating,
    );