DicomMetadata constructor

const DicomMetadata({
  1. required int width,
  2. required int height,
  3. required double windowCenter,
  4. required double windowWidth,
  5. required double rescaleIntercept,
  6. required double rescaleSlope,
  7. required String patientName,
  8. required String photometricInterpretation,
  9. required int samplesPerPixel,
  10. required int bitsAllocated,
  11. required int bitsStored,
  12. required int highBit,
  13. required int pixelRepresentation,
})

Implementation

const DicomMetadata({
  required this.width,
  required this.height,
  required this.windowCenter,
  required this.windowWidth,
  required this.rescaleIntercept,
  required this.rescaleSlope,
  required this.patientName,
  required this.photometricInterpretation,
  required this.samplesPerPixel,
  required this.bitsAllocated,
  required this.bitsStored,
  required this.highBit,
  required this.pixelRepresentation,
});