listFromJson static method
Implementation
static List<PermissionActionEnum?>? listFromJson(
dynamic json, {
bool? emptyIsNull,
bool? growable,
}) =>
json is List && json.isNotEmpty
? json
.map(PermissionActionEnum.fromJson)
.toList(growable: true == growable)
: true == emptyIsNull
? null
: <PermissionActionEnum>[];