ProtoLongAnswerAttachment constructor

ProtoLongAnswerAttachment({
  1. List<int>? answers,
  2. List<int>? proof,
  3. List<int>? key,
  4. List<int>? salt,
})

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;
}