scopesContextListToJson function
Implementation
List<String> scopesContextListToJson(List<enums.ScopesContext>? scopesContext) {
if (scopesContext == null) {
return [];
}
return scopesContext.map((e) => enums.$ScopesContextMap[e]!).toList();
}