verify method
Verifies the signature for the provided digest using the available key.
Implementation
@override
bool verify(List<int> message, List<int> signature) {
return verifyScript(
signature,
_SubstrateSr25519SignerUtils.signingContext(message),
);
}