FollowerModel constructor

FollowerModel({
  1. String? id,
  2. required String phoneNumber,
  3. String? password,
  4. required String name,
  5. String? photo,
  6. required String apiKey,
  7. Location? location,
  8. String? notificationToken,
  9. Country? country,
  10. required DateTime createdAt,
})

Implementation

FollowerModel({
  this.id,
  required this.phoneNumber,
  this.password,
  required this.name,
  this.photo,
  required this.apiKey,
  this.location,
  this.notificationToken,
  this.country,
  required this.createdAt,
});