Make ResponseStream a regular class (#642)

This commit is contained in:
Aran Donohue 2023-06-20 04:32:24 -07:00 committed by GitHub
parent d9553ca73f
commit a8cc164cee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -66,8 +66,7 @@ class ResponseFuture<R> extends DelegatingFuture<R>
}
/// A gRPC response producing a stream of values.
base class ResponseStream<R> extends StreamView<R>
with _ResponseMixin<dynamic, R> {
class ResponseStream<R> extends StreamView<R> with _ResponseMixin<dynamic, R> {
@override
final ClientCall<dynamic, R> _call;