verify method
override
Verifies a PEM certificate against configured pins via the method channel.
Sends verify to the native platform with the domain, certificate,
and optional instanceId.
Implementation
@override
Future<void> verify(String domain, String certificate,
{String? instanceId}) async {
await methodChannel.invokeMethod('verify', {
'domain': domain,
'certificate': certificate,
'instanceId': instanceId,
});
}