readString method

Future<String> readString()

Reads the part content as a string (utf8 decoded).

Implementation

Future<String> readString() async {
  return utf8.decodeStream(_original);
}