deleteGroup method Null safety
- 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);
}
Delete files that belong to the group
.
Returns the amount of rows that were deleted.
Future<int> deleteGroup(String group) async {
return await _db.deleteGroup(group);
}