ImageSaveResult constructor

const ImageSaveResult({
  1. required String? filePath,
  2. required String? blobUrl,
})

Implementation

const ImageSaveResult({
  required this.filePath,
  required this.blobUrl,
});