ListGameServerGroupsOutput.fromJson constructor
Implementation
factory ListGameServerGroupsOutput.fromJson(Map<String, dynamic> json) {
return ListGameServerGroupsOutput(
gameServerGroups: (json['GameServerGroups'] as List?)
?.whereNotNull()
.map((e) => GameServerGroup.fromJson(e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}