SelectionConditionStringNotLike constructor

const SelectionConditionStringNotLike({
  1. required Input<String> key,
  2. required Input<String> value,
})

Creates a new SelectionConditionStringNotLike. key Key for the filter. value Value for the filter.

Implementation

const SelectionConditionStringNotLike({
  required this.key,
  required this.value,
});