updateEntity method
Implementation
@override
Future<FollowRequestEntity> updateEntity(
String documentID, FollowRequestEntity value) {
return followRequestCollection
.doc(documentID)
.update(value.toDocument())
.then((_) => value);
}