decode method

  1. @override
Future<Uint8List> decode(
  1. Uint8List data
)
override

Decodes bytes into a Dart value.

Implementation

@override
Future<Uint8List> decode(Uint8List data) async => Uint8List.fromList(data);