ProtoShortAnswerDb constructor
Implementation
factory ProtoShortAnswerDb({
$core.List<$core.int>? hash,
$fixnum.Int64? timestamp,
}) {
final _result = create();
if (hash != null) {
_result.hash = hash;
}
if (timestamp != null) {
_result.timestamp = timestamp;
}
return _result;
}