JsonRpcContextResult<T> class

JSON RPC Context Result

Inheritance

Constructors

JsonRpcContextResult({required JsonRpcContext context, required T? value})
Defines a common JSON-RPC success result.
const
JsonRpcContextResult.fromJson(Map<String, dynamic> json)
Creates an instance of this class from the constructor parameters defined in the json object.
factory

Properties

context JsonRpcContext
A JSON-RPC response context.
final
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value → T?
The value returned by the operation.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serialises this class into a JSON object.
override
toJsonClean() Map<String, dynamic>
Returns the result of toJson, removing all null valued entries.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

parse<T, U>(Map<String, dynamic> json, JsonRpcParser<T, U> parse) JsonRpcContextResult<T>
Creates an instance of this class from the constructor parameters defined in the json object.
tryParse<T, U>(Map<String, dynamic>? json, JsonRpcParser<T, U> parse) JsonRpcContextResult<T>?
Creates an instance of this class from the constructor parameters defined in the json object.