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