FhirPathException constructor

FhirPathException(
  1. String message, {
  2. String? pathExpression,
  3. int? offset,
  4. Object? token,
  5. Object? cause,
  6. String? operation,
  7. dynamic arguments,
  8. List? collection,
  9. Object? context,
  10. Map? environment,
})

Implementation

FhirPathException(this.message,
    {this.pathExpression,
    this.offset,
    this.token,
    this.cause,
    this.operation,
    this.arguments,
    this.collection,
    this.context,
    this.environment});