LikeWhere constructor

LikeWhere({
  1. required String value,
  2. bool contains = true,
  3. bool not = false,
})

Implementation

LikeWhere({
  required this.value,
  this.contains = true,
  this.not = false,
});