remove method

Future<void> remove(
  1. dynamic uniqueID
)

Implementation

Future<void> remove(dynamic uniqueID) async {
  try {
    _startLoading();
    await fetcher.remove<T>('$route/$uniqueID');
    _handleAfterRemove(uniqueID);
    _succeedLoading();
  } catch (e) {
    _failLoading();
    _logError(e, 'remove method');
    if (options.throwErrors) rethrow;
  } finally {
    notifyListeners();
  }
}