add method
Implementation
@override
Future<FollowingDashboardModel> add(FollowingDashboardModel value) {
return followingDashboardCollection
.doc(value.documentID)
.set(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}