TapStep constructor

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

Implementation

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