InvalidLongitudeException.withValue constructor

const InvalidLongitudeException.withValue(
  1. double value, [
  2. String? message
])

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

Implementation

const InvalidLongitudeException.withValue(double value, [String? message])
    : super.withValue(value, message);