BatchExecuteStatementOutput.fromJson constructor
Implementation
factory BatchExecuteStatementOutput.fromJson(Map<String, dynamic> json) {
return BatchExecuteStatementOutput(
responses: (json['Responses'] as List?)
?.whereNotNull()
.map(
(e) => BatchStatementResponse.fromJson(e as Map<String, dynamic>))
.toList(),
);
}