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