update method

Implementation

@override
Future<BlockingDashboardModel> update(BlockingDashboardModel value) {
  return blockingDashboardCollection
      .doc(value.documentID)
      .update(value.toEntity(appId: appId).toDocument())
      .then((_) => value);
}