List<String> scopes

Source

List<String> get scopes {
  var v = values["scopes"] as String;
  if (v.isEmpty) {
    return null;
  }
  return v?.split(" ")?.toList();
}