DoubleTapStep constructor

DoubleTapStep({
  1. required String testableId,
  2. Duration? timeout,
})

Implementation

DoubleTapStep({
  required this.testableId,
  this.timeout,
}) : assert(testableId.isNotEmpty == true);