WhatsAppDoneBtn constructor

const WhatsAppDoneBtn({
  1. Key? key,
  2. required ProImageEditorConfigs configs,
  3. required Color foregroundColor,
  4. required dynamic onPressed(),
})

Constructs a WhatsAppDoneBtn widget with the specified parameters.

Implementation

const WhatsAppDoneBtn({
  super.key,
  required this.configs,
  required this.foregroundColor,
  required this.onPressed,
});