ConfigPathException constructor

ConfigPathException(
  1. String path,
  2. String element
)

Implementation

ConfigPathException(String path, this.element)
    : super(
        path,
        'ConfigPathException: Path "$path" could not be resolved. '
        'Missing element: "$element".',
      );