SetAppBackgroundStatusReq constructor

SetAppBackgroundStatusReq({
  1. String? userID,
  2. bool? isBackground,
})

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