UpdateTtlResponse_ constructor
UpdateTtlResponse_({
- UpdateTtlResponse___Set? set,
- UpdateTtlResponse___NotSet? notSet_2,
- UpdateTtlResponse___Missing? missing,
Implementation
factory UpdateTtlResponse_({
UpdateTtlResponse___Set? set,
UpdateTtlResponse___NotSet? notSet_2,
UpdateTtlResponse___Missing? missing,
}) {
final $result = create();
if (set != null) {
$result.set = set;
}
if (notSet_2 != null) {
$result.notSet_2 = notSet_2;
}
if (missing != null) {
$result.missing = missing;
}
return $result;
}