getStringList method
Reads a list of string values from the platform, throwing a TypeError
if the value is not a List<String>.
Implementation
Future<List<String>?> getStringList(String key) async {
return _platform.getStringList(key, _options);
}