JwtQRCodePair constructor

JwtQRCodePair({
  1. String? gatewayJwt,
  2. String? qRCodeForMobileAdd,
})

Implementation

factory JwtQRCodePair({
  $core.String? gatewayJwt,
  $core.String? qRCodeForMobileAdd,
}) {
  final $result = create();
  if (gatewayJwt != null) {
    $result.gatewayJwt = gatewayJwt;
  }
  if (qRCodeForMobileAdd != null) {
    $result.qRCodeForMobileAdd = qRCodeForMobileAdd;
  }
  return $result;
}