DialogComponent constructor

DialogComponent({
  1. Key? key,
  2. required AppModel app,
  3. required String dialogId,
  4. Map<String, dynamic>? parameters,
  5. bool? includeHeading = true,
})

Implementation

DialogComponent(
    {super.key,
    required this.app,
    required this.dialogId,
    this.parameters,
    this.includeHeading = true});