FollowingArrayModel constructor

FollowingArrayModel({
  1. required String documentID,
  2. required String appId,
  3. List<String>? followers,
})

Implementation

FollowingArrayModel({
  required this.documentID,
  required this.appId,
  this.followers,
});