EnumAssertions constructor

EnumAssertions(
  1. Enum? subject, {
  2. bool isReversed = false,
  3. String? subjectLabel,
})

Initializes a new instance of the EnumAssertions class.

Implementation

EnumAssertions(
  Enum? subject, {
  bool isReversed = false,
  String? subjectLabel,
}) : super(subject, isReversed: isReversed, subjectLabel: subjectLabel);