PartialArg class final

Partial argument value of the function call.

Inheritance
  • Object
  • ProtoMessage
  • PartialArg

Constructors

PartialArg({NullValue? nullValue, double? numberValue, String? stringValue, bool? boolValue, required String jsonPath, bool willContinue = false})
PartialArg.fromJson(Object? j)
factory

Properties

boolValue bool?
Optional. Represents a boolean value.
final
hashCode int
The hash code for this object.
no setterinherited
jsonPath String
Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar0.data".
final
nullValue → NullValue?
Optional. Represents a null value.
final
numberValue double?
Optional. Represents a double value.
final
qualifiedName String
The fully qualified name of this message, i.e., google.protobuf.Duration or google.rpc.ErrorInfo.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringValue String?
Optional. Represents a string value.
final
willContinue bool
Optional. Whether this is not the last part of the same json_path. If true, another PartialArg message for the current json_path is expected to follow.
final

Methods

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

Operators

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

Constants

fullyQualifiedName → const String