IntentParameter constructor

IntentParameter({
  1. String? name,
  2. required String? displayName,
  3. String? value,
  4. String? defaultValue,
  5. String? entityTypeDisplayName,
  6. bool? mandatory,
  7. List<String>? prompts,
  8. bool? isList,
})

Implementation

IntentParameter({
  this.name,
  required this.displayName,
  this.value,
  this.defaultValue,
  this.entityTypeDisplayName,
  this.mandatory,
  this.prompts,
  this.isList,
});