lazyRemove<T> method

void lazyRemove<T>({
  1. String? tag,
})

removes an instance from the lazy hasmap

Implementation

void lazyRemove<T>({String? tag}) {
  final key = _getKey(T, tag);
  _lazyVars.remove(key);
}