AfterSubmitAction constructor

const AfterSubmitAction({
  1. required AfterSubmitActionType type,
  2. String? buttonTitle,
  3. AfterSubmitActionTrigger? trigger,
  4. Duration? delay,
  5. Uri? targetUrl,
})

Creates a new instance of the AfterSubmitAction class.

Implementation

const AfterSubmitAction({
  required this.type,
  this.buttonTitle,
  this.trigger,
  this.delay,
  this.targetUrl,
});