labelForMatchOp function

String labelForMatchOp(
  1. InfospectBreakpointMatchOp op
)

Implementation

String labelForMatchOp(InfospectBreakpointMatchOp op) {
  return switch (op) {
    InfospectBreakpointMatchOp.exists => 'Exists',
    InfospectBreakpointMatchOp.equals => 'Equals',
    InfospectBreakpointMatchOp.contains => 'Contains',
    InfospectBreakpointMatchOp.inRange => 'In range',
  };
}