NotEquals constructor

NotEquals(
  1. Object? firstField,
  2. Object? secondField, {
  3. bool firstFieldQuoted = true,
  4. bool secondFieldQuoted = true,
})

Implementation

NotEquals(
  Object? firstField,
  Object? secondField, {
  bool firstFieldQuoted = true,
  bool secondFieldQuoted = true,
}) : super(
        firstField,
        secondField,
        "<>",
        firstFieldQuoted: firstFieldQuoted,
        secondFieldQuoted: secondFieldQuoted,
      );