equal function

bool equal(
  1. dynamic obj1,
  2. dynamic obj2
)

Implementation

bool equal(obj1, obj2) {
    return obj1 == obj2;
}