ActionDTOInternal constructor

ActionDTOInternal({
  1. int? id,
  2. String? type,
  3. String? label,
  4. String? configurationJSON,
  5. List<ActionFeedbackDTOInternal> actionTokens = const [],
})

Returns a new ActionDTOInternal instance.

Implementation

ActionDTOInternal({
  this.id,
  this.type,
  this.label,
  this.configurationJSON,
  this.actionTokens = const [],
});