FollowRequestEntity constructor

FollowRequestEntity({
  1. required String? appId,
  2. String? followerId,
  3. String? followedId,
  4. int? status,
})

Implementation

FollowRequestEntity({
  required this.appId,
  this.followerId,
  this.followedId,
  this.status,
});