Lock_Image constructor
Implementation
factory Lock_Image({
$core.Iterable<$10.LockId>? leaves,
$core.int? threshold,
}) {
final $result = create();
if (leaves != null) {
$result.leaves.addAll(leaves);
}
if (threshold != null) {
$result.threshold = threshold;
}
return $result;
}