streamInitError method
void
streamInitError()
Implementation
void streamInitError() {
throw FlutterError.fromParts(
throw FlutterError.fromParts(
[
ErrorSummary('StreamSubscription<$V> is null!'),
ErrorDescription(
'An error occurred while processing a stream subscription: The stream subscription of type $V has not been initialized. Please initialize the subscription before using it.',
),
],
),
);
}