deleteCertificate method
Удалить сертификат
Implementation
@override
Future<void> deleteCertificate(Certificate certificate) async {
await methodChannel.invokeMethod(
"deletePfxCertificate",
{
"alias": certificate.alias,
},
);
}