InvalidHourException.withValue constructor

const InvalidHourException.withValue(
  1. int value, [
  2. String? message
])

Creates a InvalidHourException object that includes the value that triggered this exception.

Implementation

const InvalidHourException.withValue(int super.value, [super.message])
    : super.withValue();