SignResult class

Annotations
  • @JsonSerializable(includeIfNull: false)

Constructors

SignResult({PactCommand? body, PactCommand? signedCmd, SignRequestError? error})
SignResult.fromJson(Map<String, dynamic> json)
factory

Properties

body PactCommand?
The signed pact command. 'body' is the official name in the Kadena Wallet Signing API spec. body and/or signedCmd will be set.
final
error SignRequestError?
The error message if the signing failed.
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
signedCmd PactCommand?
The signed pact command. This is the implementation based on eckoWallet. body and/or signedCmd will be set.
final

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.
override

Operators

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