PropertyException constructor

PropertyException(
  1. String? message, [
  2. String? name,
  3. Exception? innerException,
  4. StackTrace? innerStackTrace,
])
PropertyException Constructor. Error message text. The name of the property that is at the origin of the exception.

Implementation

PropertyException(String? message,
    [this.name, Exception? innerException, StackTrace? innerStackTrace])
    : super(message, innerException, innerStackTrace);