deleteRangeOfList static method

Future<Ret> deleteRangeOfList(
  1. List<String> deviceIdList,
  2. int startTimestampInSecond,
  3. int endTimestampInSecond, {
  4. bool global = false,
})

Implementation

static Future<Ret> deleteRangeOfList(
    List<String> deviceIdList, int startTimestampInSecond, int endTimestampInSecond,
    {bool global = false}) async {
  return EventServiceImpl.deleteRangeOfList(
      deviceIdList, startTimestampInSecond, endTimestampInSecond,
      global: global);
}