exportJsonRawSync<R> abstract method

R exportJsonRawSync<R>(
  1. R 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

R exportJsonRawSync<R>(R Function(Uint8List) callback);