WhatsappCamera constructor

const WhatsappCamera({
  1. Key? key,
  2. bool multiple = true,
})

how use:

List<File>? res = await Navigator.push(
context,
MaterialPageRoute(
  builder: (context) => const WhatsappCamera()),
);

Implementation

const WhatsappCamera({super.key, this.multiple = true});