SocialFeed constructor

SocialFeed(
  1. {required String name,
  2. required String photoURL,
  3. required String description,
  4. required int likes,
  5. required String address,
  6. required String email,
  7. required String phone,
  8. required double latitude,
  9. required double longitude}
)

Implementation

SocialFeed({
  required this.name,
  required this.photoURL,
  required this.description,
  required this.likes,
  required this.address,
  required this.email,
  required this.phone,
  required this.latitude,
  required this.longitude,
});