PKCS12KeyPairResponse constructor

PKCS12KeyPairResponse({
  1. PKCS12KeyPair? output,
  2. String? error,
})

Implementation

factory PKCS12KeyPairResponse({
  PKCS12KeyPair? output,
  $core.String? error,
}) {
  final _result = create();
  if (output != null) {
    _result.output = output;
  }
  if (error != null) {
    _result.error = error;
  }
  return _result;
}