destroy<T> static method

void destroy<T>()

Destroys the global conduit stream for the specific type T, removing its BehaviorSubject from management.

Implementation

static void destroy<T>() =>
    $conduitStreams.removeWhere((e) => e is BehaviorSubject<T>);