Errors constructor

Errors({
  1. String? code,
  2. List<ErrorDetails> errorDetails = const [],
  3. String? location,
  4. String? message,
})

Implementation

Errors({this.code, this.errorDetails = const [], this.location, this.message})
  : super(fullyQualifiedName);