ProtoShortAnswerAttachment constructor

ProtoShortAnswerAttachment({
  1. List<int>? answers,
  2. Int64? rnd,
})

Implementation

factory ProtoShortAnswerAttachment({
  $core.List<$core.int>? answers,
  $fixnum.Int64? rnd,
}) {
  final _result = create();
  if (answers != null) {
    _result.answers = answers;
  }
  if (rnd != null) {
    _result.rnd = rnd;
  }
  return _result;
}