SendBulkEmailResponse.fromJson constructor
Implementation
factory SendBulkEmailResponse.fromJson(Map<String, dynamic> json) {
return SendBulkEmailResponse(
bulkEmailEntryResults: (json['BulkEmailEntryResults'] as List)
.whereNotNull()
.map((e) => BulkEmailEntryResult.fromJson(e as Map<String, dynamic>))
.toList(),
);
}