LocationsResponseBody class

Constructors

LocationsResponseBody({int? column, int? endColumn, int? endLine, required int line, required Source source})
LocationsResponseBody.fromMap(Map<String, Object?> obj)

Properties

column int?
Position of the location within the line. It is measured in UTF-16 code units and the client capability columnsStartAt1 determines whether it is 0- or 1-based. If no column is given, the first position in the start line is assumed.
final
endColumn int?
End position of the location within endLine, present if the location refers to a range. It is measured in UTF-16 code units and the client capability columnsStartAt1 determines whether it is 0- or 1-based.
final
endLine int?
End line of the location, present if the location refers to a range. The client capability linesStartAt1 determines whether it is 0- or 1-based.
final
hashCode int
The hash code for this object.
no setterinherited
line int
The line number of the location. The client capability linesStartAt1 determines whether it is 0- or 1-based.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
source Source
The source containing the location; either source.path or source.sourceReference must be specified.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object?>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

canParse(Object? obj) bool
fromJson(Map<String, Object?> obj) LocationsResponseBody