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