GraphQLResponseErrorLocation class
Represents a location in the GraphQL request document where an error occurred. line and column correspond to the beginning of the syntax element associated with the error.
- Annotations
Constructors
- GraphQLResponseErrorLocation(int line, int column)
-
Represents a location in the GraphQL request document where an error occurred.
line and column correspond to the beginning of the syntax element associated
with the error.
const
-
GraphQLResponseErrorLocation.fromJson(Map<
String, dynamic> json) -
factory
Properties
- column → int
-
The column in the GraphQL request document where the error-causing syntax
element starts.
final
- hashCode → int
-
The hash code for this object.
no setteroverride
- line → int
-
The line in the GraphQL request document where the error-causing syntax
element starts.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override