ObjectAssertions constructor

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

Initializes a new instance of the ObjectAssertions class.

Implementation

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