ImageSelector constructor

const ImageSelector({
  1. Key? key,
  2. double aspectRatio = 2.0,
  3. required Rx<XFile?> file,
  4. double? maxWidth,
  5. double? maxHeight,
})

Implementation

const ImageSelector({
  Key? key,
  this.aspectRatio = 2.0,
  required this.file,
  this.maxWidth,
  this.maxHeight,
}) : super(key: key);