ImageSelectionResult constructor

ImageSelectionResult({
  1. required String dataUrl,
  2. required int width,
  3. required int height,
})

Implementation

ImageSelectionResult({
  required this.dataUrl,
  required this.width,
  required this.height,
});