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