WatchJobChangesResponse constructor
WatchJobChangesResponse({
- JobChangeType? type,
- List<
int> ? jobId, - Int64? watchRevision,
- List<
int> ? deviceId,
Implementation
factory WatchJobChangesResponse({
$2.JobChangeType? type,
$core.List<$core.int>? jobId,
$fixnum.Int64? watchRevision,
$core.List<$core.int>? deviceId,
}) {
final _result = create();
if (type != null) {
_result.type = type;
}
if (jobId != null) {
_result.jobId = jobId;
}
if (watchRevision != null) {
_result.watchRevision = watchRevision;
}
if (deviceId != null) {
_result.deviceId = deviceId;
}
return _result;
}