AssertErrorStep constructor

AssertErrorStep({
  1. required bool caseSensitive,
  2. required bool equals,
  3. required String? error,
  4. required String testableId,
  5. Duration? timeout,
})

Implementation

AssertErrorStep({
  required this.caseSensitive,
  required this.equals,
  required this.error,
  required this.testableId,
  this.timeout,
}) : assert(testableId.isNotEmpty == true);