ParseError constructor

ParseError({
  1. required String message,
  2. String? source,
  3. String? rawSnippet,
  4. Type? expectedType,
  5. RequestOptions? requestOptions,
  6. StackTrace? stackTrace,
  7. Object? originalError,
  8. DateTime? timestamp,
})

Implementation

ParseError({
  required super.message,
  this.source,
  this.rawSnippet,
  this.expectedType,
  super.requestOptions,
  super.stackTrace,
  super.originalError,
  super.timestamp,
});