ThirdPartyCaveat constructor

ThirdPartyCaveat({
  1. String? location,
  2. List<int>? ticket,
  3. List<int>? challenge,
  4. List<int>? salt,
})

Implementation

factory ThirdPartyCaveat({
  $core.String? location,
  $core.List<$core.int>? ticket,
  $core.List<$core.int>? challenge,
  $core.List<$core.int>? salt,
}) {
  final result = create();
  if (location != null) result.location = location;
  if (ticket != null) result.ticket = ticket;
  if (challenge != null) result.challenge = challenge;
  if (salt != null) result.salt = salt;
  return result;
}