WatchSessionChangesRequest constructor

WatchSessionChangesRequest({
  1. List<int>? deviceId,
  2. Int64? watchRevision,
})

Implementation

factory WatchSessionChangesRequest({
  $core.List<$core.int>? deviceId,
  $fixnum.Int64? watchRevision,
}) {
  final _result = create();
  if (deviceId != null) {
    _result.deviceId = deviceId;
  }
  if (watchRevision != null) {
    _result.watchRevision = watchRevision;
  }
  return _result;
}