TestMetadata constructor

TestMetadata({
  1. required bool skip,
  2. String? skipReason,
})

Test metadata regarding whether the test was skipped and the reason.

Implementation

TestMetadata({required this.skip, this.skipReason});