DeleteLicenseResponse.fromJson constructor
Implementation
factory DeleteLicenseResponse.fromJson(Map<String, dynamic> json) {
return DeleteLicenseResponse(
deletionDate: json['DeletionDate'] as String?,
status: (json['Status'] as String?)?.toLicenseDeletionStatus(),
);
}