FollowingEntity constructor

FollowingEntity({
  1. required String? appId,
  2. String? followerId,
  3. String? followedId,
})

Implementation

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