delete method

bool delete({
  1. bool force = false,
})

Delete the instance

Implementation

bool delete({bool force = false}) {
  return _targetScope.delete<T>(tag: tag, force: force);
}