Action constructor

const Action({
  1. required String action,
  2. String? when,
  3. String? changed,
  4. Map<String, dynamic>? parameters,
  5. List<String>? creators,
  6. String? sourceType,
  7. List<Action>? related,
  8. String? reason,
  9. String? description,
})

Creates an instance of Action.

Implementation

const Action({
  required this.action,
  this.when,
  this.changed,
  this.parameters,
  this.creators,
  this.sourceType,
  this.related,
  this.reason,
  this.description,
});