PutTargetsResponse.fromJson constructor
Implementation
factory PutTargetsResponse.fromJson(Map<String, dynamic> json) {
return PutTargetsResponse(
failedEntries: (json['FailedEntries'] as List?)
?.whereNotNull()
.map((e) => PutTargetsResultEntry.fromJson(e as Map<String, dynamic>))
.toList(),
failedEntryCount: json['FailedEntryCount'] as int?,
);
}