Error constructor

Error({
  1. List<Location>? locations,
  2. String? message,
  3. List<String>? path,
})

Implementation

Error({
  this.locations,
  this.message,
  this.path,
});