LabelSelector constructor

const LabelSelector({
  1. List<LabelSelectorRequirement>? matchExpressions,
  2. Map<String, String>? matchLabels,
})

Default constructor.

Implementation

const LabelSelector({
  this.matchExpressions,
  this.matchLabels,
});