JsonRpcContextResult<T> class
JSON RPC Context Result
- Inheritance
-
- Object
- Serialisable
- JsonRpcContextResult
Constructors
- JsonRpcContextResult({required JsonRpcContext context, required T? value})
-
Defines a common JSON-RPC
successresult.const -
JsonRpcContextResult.fromJson(Map<
String, dynamic> json) -
Creates an instance of
thisclass from the constructor parameters defined in thejsonobject.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
thisclass into a JSON object.override -
toJsonClean(
) → Map< String, dynamic> -
Returns the result of toJson, removing all
nullvalued 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
thisclass from the constructor parameters defined in thejsonobject. -
tryParse<
T, U> (Map< String, dynamic> ? json, JsonRpcParser<T, U> parse) → JsonRpcContextResult<T> ? -
Creates an instance of
thisclass from the constructor parameters defined in thejsonobject.