StreamBufferFetchResult constructor

const StreamBufferFetchResult({
  1. required Uint8List? data,
  2. required bool hasMore,
})

Implementation

const StreamBufferFetchResult({
  required this.data,
  required this.hasMore,
});