UploadImageTile constructor

const UploadImageTile({
  1. Key? key,
  2. String? imageUrl,
  3. Widget placeholder = const SizedBox.shrink(),
  4. BorderRadius? borderRadius,
})

Implementation

const UploadImageTile({
  super.key,
  this.imageUrl,
  this.placeholder = const SizedBox.shrink(),
  this.borderRadius,
});