readStringList abstract method

List<String> readStringList(
  1. [int? length,
  2. Converter<List<int>, String> decoder = utf8Decoder]
)

Read a list of Strings with length.

If length is not provided, it is read first.

Implementation

List<String> readStringList([
  int? length,
  Converter<List<int>, String> decoder = utf8Decoder,
]);