PKCS12KeyPairResponse constructor
PKCS12KeyPairResponse({
- PKCS12KeyPair? output,
- 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;
}