match method

RadBoolean match(
  1. String other
)

Implementation

RadBoolean match(String other) {
  if (value == other) {
    return RadBoolean(true);
  }
  return RadBoolean(false);
}