blobValueAt method

  1. @override
Uint8List? blobValueAt(
  1. int index, [
  2. int? type
])

Read binary value by index.

Implementation

@override
Uint8List? blobValueAt(int index, [int? type]) {
  type ??= valueType(index);
  if (values.address == 0 || type == sqlite.NULL) return null;
  return Driver.binder.value_blob(values[index]);
}