ActionConfiguration constructor

ActionConfiguration({
  1. required String schemaType,
  2. String? title,
  3. bool? isAwaited,
})

Creates a new action configuration.

Implementation

ActionConfiguration({
  required this.schemaType,
  this.title,
  this.isAwaited,
});