createSignature method
Creates a signature for the given payload using biometrics.
Implementation
@override
Future<String?> createSignature(SignatureOptions options) async {
try {
final response = await methodChannel.invokeMethod<String>(
'createSignature',
options.toMethodChannelMap(),
);
return response;
} on PlatformException {
rethrow;
}
}