RequestTypeCreateDTO.fromJson constructor

RequestTypeCreateDTO.fromJson(
  1. Map<String, Object?> json
)

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?,
  );
}