ScheduleKeyDeletionResponse.fromJson constructor
Implementation
factory ScheduleKeyDeletionResponse.fromJson(Map<String, dynamic> json) {
return ScheduleKeyDeletionResponse(
deletionDate: timeStampFromJson(json['DeletionDate']),
keyId: json['KeyId'] as String?,
);
}