decodeLS method

List<String> decodeLS (String jsn)

jsn to be encoded as List

Implementation

static List<String> decodeLS(String jsn) {
  return json.decode(jsn).cast<String>();
}