ParseError constructor
ParseError({
- required String message,
- String? source,
- String? rawSnippet,
- Type? expectedType,
- RequestOptions? requestOptions,
- StackTrace? stackTrace,
- Object? originalError,
- DateTime? timestamp,
Implementation
ParseError({
required super.message,
this.source,
this.rawSnippet,
this.expectedType,
super.requestOptions,
super.stackTrace,
super.originalError,
super.timestamp,
});