isExists method

bool isExists(
  1. dynamic value
)

Implementation

bool isExists(dynamic value) {
  return value != null && value == this.value;
}