bytes property

Codec<Uint8List> bytes
final

Binary data as Uint8List.

Implementation

static final bytes = Codec<Uint8List>(
  'blob',
  (v) => v as Uint8List,
  (v) => v,
);