InvalidSecondException.withValue constructor

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

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

Implementation

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