removeOverride<T> method

void removeOverride<T>([
  1. Type? type
])

Removes an active test override for type T (or explicitly specified type).

Implementation

void removeOverride<T>([Type? type]) {
  _overrides.remove(type ?? T);
}