request method

  1. @override
Future<void> request(
  1. List emptyList
)

Implementation

@override
Future<void> request(List emptyList) async {
  await DbStoresClosings.closingRangesStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingStockBoutiquesStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingStockArtCalibresStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingLedgersStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingcontactsStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingLedgerBoutiquesStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingStocksStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingStockArtCalibresStoreDb.delete(_database.dbC);
  await DbStoresClosings.closingContactStocksStoreDb.delete(_database.dbC);
  return;
}