StatelessResponse constructor

StatelessResponse({
  1. FlowStatus status = FlowStatus.FAILED,
  2. List<SdkTaskResponse> results = const [],
  3. String? error,
})

Implementation

StatelessResponse({
  this.status = FlowStatus.FAILED,
  this.results = const [],
  this.error,
});