read method
InT
read()
Reads the latest value of CustomProviderListenable.source., bypassing the pause state.
Implementation
InT read() {
if (_innerSub case final innerSub?) return innerSub.read();
throw StateError('Cannot call read() from a constructor.');
}