Transform the entire FormData contents as a list of bytes asynchronously.
Future<Uint8List> readAsBytes() { return Future.sync( () => finalize().reduce((a, b) => Uint8List.fromList([...a, ...b])), ); }