TaskFlowException constructor

TaskFlowException({
  1. required String message,
  2. String? code,
})

Implementation

TaskFlowException({
  required this.message,
  this.code,
});