ImageImageSize constructor

const ImageImageSize({
  1. required String size,
  2. int? width,
  3. int? height,
})

Implementation

const ImageImageSize({
  required this.size,
  this.width,
  this.height,
});