SetAppBackgroundStatusReq constructor
Implementation
factory SetAppBackgroundStatusReq({
$core.String? userID,
$core.bool? isBackground,
}) {
final result = create();
if (userID != null) result.userID = userID;
if (isBackground != null) result.isBackground = isBackground;
return result;
}