OpenWithCameraOrGallery constructor

const OpenWithCameraOrGallery({
  1. Key? key,
  2. required dynamic onTapCamera(),
  3. required dynamic onTapGallery(),
  4. required Color iconBackgroundColor,
  5. required IconData iconCamera,
  6. required IconData iconGallery,
})

Implementation

const OpenWithCameraOrGallery({
  Key? key,
  required this.onTapCamera,
  required this.onTapGallery,
  required this.iconBackgroundColor,
  required this.iconCamera,
  required this.iconGallery,
}) : super(key: key);