loadFrame method
- String path, {
- DicomConfig? config,
Requests a processed DICOM frame from the underlying loader.
Implementation
Future<DicomFrameResult> loadFrame(final String path,
{final DicomConfig? config}) {
return _loader.load(path, config: config);
}