Operation constructor

Operation({
  1. String? action,
  2. required String? id,
  3. bool? done,
  4. dynamic output,
  5. Map<String, dynamic>? error,
  6. Map<String, dynamic>? metadata,
})

Implementation

Operation({
  this.action,
  required this.id,
  this.done,
  this.output,
  this.error,
  this.metadata,
});