EthSignRequest constructor

EthSignRequest(
  1. Pointer<Void> object
)

Implementation

EthSignRequest(Pointer<Void> object) : super() {
  nativeObject = object;
  final response = nativeGetRequestId(nativeObject).ref;
  final uuidBuffer = response.getString();
  uuid = Uuid.unparse(hex.decode(uuidBuffer));
}