ProtoLongAnswerAttachment constructor
ProtoLongAnswerAttachment({})
Implementation
factory ProtoLongAnswerAttachment({
$core.List<$core.int>? answers,
$core.List<$core.int>? proof,
$core.List<$core.int>? key,
$core.List<$core.int>? salt,
}) {
final _result = create();
if (answers != null) {
_result.answers = answers;
}
if (proof != null) {
_result.proof = proof;
}
if (key != null) {
_result.key = key;
}
if (salt != null) {
_result.salt = salt;
}
return _result;
}