StreamFetchResponse constructor

const StreamFetchResponse(
  1. int requestId, {
  2. required bool success,
  3. Uint8List? data,
  4. bool hasMore = false,
  5. String? error,
})

Implementation

const StreamFetchResponse(
  super.requestId, {
  required this.success,
  this.data,
  this.hasMore = false,
  this.error,
});