exportJsonRaw<T> method

Future<T> exportJsonRaw<T>(
  1. T callback(
    1. Uint8List
    )
)

Export the results of this query as json bytes.

IMPORTANT: Do not leak the bytes outside the callback. If you need to use the bytes outside, create a copy of the Uint8List.

Implementation

Future<T> exportJsonRaw<T>(T Function(Uint8List) callback) =>
    build().exportJsonRaw(callback);