fromName static method
Implementation
static SuiIntentScope fromName(String name) {
return values.firstWhere((e) => e.name == name,
orElse: () => throw DartSuiPluginException(
"cannot find correct scope from the given name.",
details: {"name": name}));
}