ImageOptions constructor

ImageOptions({
  1. required int width,
  2. required int height,
})

Implementation

ImageOptions({
  required this.width,
  required this.height,
});