TargetChange constructor
TargetChange({})
Implementation
factory TargetChange({
TargetChange_TargetChangeType? targetChangeType,
$core.Iterable<$core.int>? targetIds,
$9.Status? cause,
$core.List<$core.int>? resumeToken,
$4.Timestamp? readTime,
}) {
final $result = create();
if (targetChangeType != null) {
$result.targetChangeType = targetChangeType;
}
if (targetIds != null) {
$result.targetIds.addAll(targetIds);
}
if (cause != null) {
$result.cause = cause;
}
if (resumeToken != null) {
$result.resumeToken = resumeToken;
}
if (readTime != null) {
$result.readTime = readTime;
}
return $result;
}