ListTestGridSessionsResult.fromJson constructor
Implementation
factory ListTestGridSessionsResult.fromJson(Map<String, dynamic> json) {
return ListTestGridSessionsResult(
nextToken: json['nextToken'] as String?,
testGridSessions: (json['testGridSessions'] as List?)
?.whereNotNull()
.map((e) => TestGridSession.fromJson(e as Map<String, dynamic>))
.toList(),
);
}