GetTokenReply constructor

GetTokenReply({
  1. List<int>? challenge,
  2. String? token,
})

Implementation

factory GetTokenReply({
  $core.List<$core.int>? challenge,
  $core.String? token,
}) {
  final _result = create();
  if (challenge != null) {
    _result.challenge = challenge;
  }
  if (token != null) {
    _result.token = token;
  }
  return _result;
}