WhatsAppTextAppBar constructor

const WhatsAppTextAppBar({
  1. Key? key,
  2. required ProImageEditorConfigs configs,
  3. required TextAlign align,
  4. required dynamic onDone(),
  5. required dynamic onAlignChange(),
  6. required dynamic onBackgroundModeChange(),
})

Implementation

const WhatsAppTextAppBar({
  super.key,
  required this.configs,
  required this.align,
  required this.onDone,
  required this.onAlignChange,
  required this.onBackgroundModeChange,
});