bothEqual method

bool bothEqual(
  1. dynamic value
)

Implementation

bool bothEqual(value) {
  for (var item in this) {
    if (item != value) return false;
  }
  return true;
}