MetaPatch constructor
Implementation
factory MetaPatch({
$core.Map<$core.String, $core.String>? labels,
$core.Map<$core.String, $core.String>? annotations,
}) {
final _result = create();
if (labels != null) {
_result.labels.addAll(labels);
}
if (annotations != null) {
_result.annotations.addAll(annotations);
}
return _result;
}