MmOpenInteractiveDialogRequestDialog constructor

MmOpenInteractiveDialogRequestDialog({
  1. String? callbackId,
  2. required String title,
  3. String? introductionText,
  4. List<Map> elements = const [],
  5. String? submitLabel,
  6. bool? notifyOnCancel,
  7. String? state,
})

Returns a new MmOpenInteractiveDialogRequestDialog instance.

Implementation

MmOpenInteractiveDialogRequestDialog({
  this.callbackId,
  required this.title,
  this.introductionText,
  this.elements = const [],
  this.submitLabel,
  this.notifyOnCancel,
  this.state,
});