op method
Implementation
dynamic op(int op, [dynamic key]) {
Map<int, dynamic> ops = {};
if (key != null) {
ops.addAll({
OP.BOOLEAN_AS_STRING: asString,
OP.BOOLEAN_NEGATE: negate,
});
return ops[op](key);
} else
return ops[op];
}