TestAction constructor

TestAction(
  1. {required ActionType actionType,
  2. WidgetTester? tester,
  3. Finder? finder,
  4. String? enterText,
  5. Duration? awaitDuration,
  6. Function? customAction,
  7. bool executePumpAndSettle = true,
  8. int pumpTime = 5,
  9. Offset? dragOffset,
  10. String? actionName}
)

Implementation

TestAction({
  required this.actionType,
  this.tester,
  this.finder,
  this.enterText,
  this.awaitDuration,
  this.customAction,
  this.executePumpAndSettle = true,
  this.pumpTime = 5,
  this.dragOffset,
  this.actionName,
});