ImageInfo constructor

ImageInfo({
  1. required String path,
  2. int? width,
  3. int? height,
  4. int? filesize,
  5. int? orientation,
})

Implementation

ImageInfo({
  required String path,
  int? width,
  int? height,
  int? filesize,
  this.orientation,
}) : super(
        path: path,
        width: width,
        height: height,
        filesize: filesize,
      );