UnexpectedCharacterError constructor

const UnexpectedCharacterError({
  1. required ScanLocation location,
  2. required String character,
})

Implementation

const UnexpectedCharacterError({
  required this.location,
  required this.character,
});