signBytes method

Signature signBytes(
  1. Uint8List bytes
)

Returns tezart.Signature of bytes signed by this.

Implementation

Signature signBytes(Uint8List bytes) => crypto.catchUnhandledErrors(() {
      return Signature.fromBytes(bytes: bytes, keystore: this);
    });