getStringList method

Future<List<String>?> getStringList(
  1. String key
)

Reads a list of string values from the platform, throwing a TypeError if the value not a List

Implementation

Future<List<String>?> getStringList(String key) async {
  return _platform.getStringList(key, _options);
}