update method
Implementation
@override
Future<MembershipDashboardModel> update(MembershipDashboardModel value) {
return membershipDashboardCollection
.doc(value.documentID)
.update(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}