NumericAssertions constructor

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

Initializes a new instance of the NumericAssertions class.

Implementation

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