addCertificatesToTrustedStorage method
Добавить сертификаты в хранилище доверенных приложения
Implementation
@override
Future<void> addCertificatesToTrustedStorage({
required List<String> paths,
}) async {
await methodChannel.invokeMethod(
"addCertificatesToTrustedStorage",
{
"paths": paths,
},
);
}