remove method
Implementation
@override
Future<void> remove(dynamic uniqueID) async {
try {
_startLoading();
await _fetcher.remove<Model>('$_route/$uniqueID');
_succeedLoading();
} catch (e) {
_failLoading();
rethrow;
} finally {
notifyListeners();
}
}