getList method

List getList ({int index, String key })

Implementation

List<dynamic> getList({int index, String key}) {
  var result = getValue(index: index, key: key);
  if (result is List<dynamic>) {
    return result;
  } else {
    return null;
  }
}