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