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