importPFXContainer method

Future<List<Certificate>> importPFXContainer({
  1. required String filePath,
  2. required String password,
  3. String? newPassword,
})

Implementation

Future<List<Certificate>> importPFXContainer({required String filePath, required String password, String? newPassword, }) async {
  final String pigeonVar_channelName = 'dev.flutter.pigeon.crypto_pro_flutter.CryptoProFlutterApi.importPFXContainer$pigeonVar_messageChannelSuffix';
  final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
    pigeonVar_channelName,
    pigeonChannelCodec,
    binaryMessenger: pigeonVar_binaryMessenger,
  );
  final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[filePath, password, newPassword]);
  final List<Object?>? pigeonVar_replyList =
      await pigeonVar_sendFuture as List<Object?>?;
  if (pigeonVar_replyList == null) {
    throw _createConnectionError(pigeonVar_channelName);
  } else if (pigeonVar_replyList.length > 1) {
    throw PlatformException(
      code: pigeonVar_replyList[0]! as String,
      message: pigeonVar_replyList[1] as String?,
      details: pigeonVar_replyList[2],
    );
  } else if (pigeonVar_replyList[0] == null) {
    throw PlatformException(
      code: 'null-error',
      message: 'Host platform returned null value for non-null return value.',
    );
  } else {
    return (pigeonVar_replyList[0] as List<Object?>?)!.cast<Certificate>();
  }
}