UploadImageMenu constructor

const UploadImageMenu({
  1. Key? key,
  2. Color backgroundColor = Colors.white,
  3. Color headerColor = Colors.black,
  4. double width = 300,
  5. required void onSubmitted(
    1. String text
    ),
  6. required void onUpload(
    1. String text
    ),
})

Implementation

const UploadImageMenu({
  super.key,
  this.backgroundColor = Colors.white,
  this.headerColor = Colors.black,
  this.width = 300,
  required this.onSubmitted,
  required this.onUpload,
});