fromName static method

SuiIntentScope fromName(
  1. String name
)

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}));
}