RequestTypeCreateDTO.fromJson constructor
Implementation
factory RequestTypeCreateDTO.fromJson(Map<String, Object?> json) {
return RequestTypeCreateDTO(
description: json[r'description'] as String?,
helpText: json[r'helpText'] as String?,
issueTypeId: json[r'issueTypeId'] as String?,
name: json[r'name'] as String?,
);
}