GenerationException constructor

const GenerationException(
  1. String message, {
  2. String? code,
  3. Uri? source,
  4. int? line,
  5. int? column,
})

Creates a source-generation failure with an actionable message.

Implementation

const GenerationException(
  this.message, {
  this.code,
  this.source,
  this.line,
  this.column,
});