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