InteractionResult constructor

InteractionResult({
  1. required PlannedInteraction interaction,
  2. required bool executed,
  3. required String outcome,
  4. ScreenPerformance? performance,
  5. bool screenChanged = false,
})

Implementation

InteractionResult({
  required this.interaction,
  required this.executed,
  required this.outcome,
  this.performance,
  this.screenChanged = false,
});