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