DicomMetadata constructor
const
DicomMetadata({ - required int width,
- required int height,
- required double windowCenter,
- required double windowWidth,
- required double rescaleIntercept,
- required double rescaleSlope,
- required String patientName,
- required String photometricInterpretation,
- required int samplesPerPixel,
- required int bitsAllocated,
- required int bitsStored,
- required int highBit,
- 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,
});