removeDelegate method

void removeDelegate(
  1. ExtentPrecalculationPolicyDelegate? value
)

Implementation

void removeDelegate(ExtentPrecalculationPolicyDelegate? value) {
  _delegates.remove(value);
  if (_delegates.isEmpty) {
    onDetached();
  }
}