LanguageVersionFormatException constructor

  1. @visibleForTesting
const LanguageVersionFormatException(
  1. String message, {
  2. required String source,
  3. required int offset,
})

Creates a new LanguageVersionFormatException with the specified message reported at the specified offset in source.

Implementation

@visibleForTesting
const LanguageVersionFormatException(
  this.message, {
  required this.source,
  required this.offset,
});