DeleteLicenseResponse.fromJson constructor

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

Implementation

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