listFromJson static method
List<GetApiKeys200ResponseDataInnerObjectEnum>
listFromJson(
- dynamic json, {
- bool growable = false,
Implementation
static List<GetApiKeys200ResponseDataInnerObjectEnum> listFromJson(
dynamic json, {
bool growable = false,
}) {
final result = <GetApiKeys200ResponseDataInnerObjectEnum>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = GetApiKeys200ResponseDataInnerObjectEnum.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}