CompletionsArguments class

Arguments for completions request.

Inheritance

Constructors

CompletionsArguments({required int column, int? frameId, int? line, required String text})
CompletionsArguments.fromMap(Map<String, Object?> obj)

Properties

column int
The position within text for which to determine the completion proposals. It is measured in UTF-16 code units and the client capability columnsStartAt1 determines whether it is 0- or 1-based.
final
frameId int?
Returns completions in the scope of this stack frame. If not specified, the completions are returned for the global scope.
final
hashCode int
The hash code for this object.
no setterinherited
line int?
A line for which to determine the completion proposals. If missing the first line of the text is assumed.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
text String
One or more source lines. Typically this is the text users have typed into the debug console before they asked for completion.
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
override
fromJson(Map<String, Object?> obj) CompletionsArguments