eqSet static method

bool eqSet(
  1. Set? value1,
  2. Set? value2
)

Implementation

static bool eqSet(Set? value1, Set? value2) {
  if (value1 == null && value2 == null) return true;
  return value1!.eq(value2!);
}