GalleryRecentPreview constructor

const GalleryRecentPreview({
  1. Key? key,
  2. required AssetEntity entity,
  3. Widget builder(
    1. Uint8List bytes
    )?,
  4. Widget? child,
  5. double? height,
  6. double? width,
})

Implementation

const GalleryRecentPreview({
  Key? key,
  required this.entity,
  this.builder,
  this.child,
  this.height,
  this.width,
}) : super(key: key);