scopesContextListFromJson function
List<ScopesContext>
scopesContextListFromJson(
- List? scopesContext, [
- List<
ScopesContext> ? defaultValue
Implementation
List<enums.ScopesContext> scopesContextListFromJson(
List? scopesContext, [
List<enums.ScopesContext>? defaultValue,
]) {
if (scopesContext == null) {
return defaultValue ?? [];
}
return scopesContext.map((e) => scopesContextFromJson(e.toString())).toList();
}