match function

bool match(
  1. String? value1,
  2. String? value2
)

Implementation

bool match(String? value1, String? value2){
  return NUIStringUtil.match(value1, value2);
}