deleteGroup method

Future<int> deleteGroup(
  1. String group
)

Delete files that belong to the group. Returns the amount of rows that were deleted.

Implementation

Future<int> deleteGroup(String group) async {
  return await _db.deleteGroup(group);
}