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