sign method

List<int> sign(
  1. List<int> digest
)

Implementation

List<int> sign(List<int> digest) {
  return _signer.sign(digest.asBytes);
}