removeUploader method
Implementation
@override
FutureOr<void> removeUploader(String name, String email) async {
final existing = await query(name);
if (existing == null) {
throw StateError('$name not exist!');
}
final uploaders = [...?existing.uploaders]..remove(email);
await _upsert(existing.copyWith(uploaders: uploaders));
}