Metadata constructor

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

Metadatas about a test

Implementation

factory Metadata({
  /// Whether the test was skipped
  required bool skip,

  // The reason the tests was skipped, or `null` if it wasn't skipped.
  String? skipReason,
}) = _Metadata;