PutEmailIdentityDkimSigningAttributesResponse.fromJson constructor

PutEmailIdentityDkimSigningAttributesResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory PutEmailIdentityDkimSigningAttributesResponse.fromJson(
    Map<String, dynamic> json) {
  return PutEmailIdentityDkimSigningAttributesResponse(
    dkimStatus: (json['DkimStatus'] as String?)?.toDkimStatus(),
    dkimTokens: (json['DkimTokens'] as List?)
        ?.whereNotNull()
        .map((e) => e as String)
        .toList(),
  );
}