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