ImageResize constructor

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

Creates resize dimensions.

Implementation

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