setStringList method

Future<bool> setStringList(
  1. String dataKey,
  2. List<String>? dataValue, {
  3. bool notify = true,
})

Set the List

Implementation

Future<bool> setStringList(String dataKey, List<String>? dataValue,
    {bool notify = true}) async {
  assert(_key != null);
  return _decorator.setStringList(dataKey, dataValue, notify: notify);
}