AnalysisError.withNamedArguments constructor

  1. @deprecated
AnalysisError.withNamedArguments(
  1. Source source,
  2. int offset,
  3. int length,
  4. ErrorCode errorCode,
  5. Map<String, dynamic> arguments, {
  6. List<DiagnosticMessage> contextMessages = const [],
})

Initialize a newly created analysis error. The error is associated with the given source and is located at the given offset with the given length. The error will have the given errorCode and the map of arguments will be used to complete the message and correction. If any contextMessages are provided, they will be recorded with the error.

Deprecated - no analyzer errors use named arguments anymore. Please use AnalysisError().

Implementation

@deprecated
AnalysisError.withNamedArguments(Source source, int offset, int length,
    ErrorCode errorCode, Map<String, dynamic> arguments,
    {List<DiagnosticMessage> contextMessages = const []})
    : this(source, offset, length, errorCode,
          _translateNamedArguments(arguments), contextMessages);