hasBindings static method

bool hasBindings(
  1. String? s
)

Implementation

static bool hasBindings(String? s) {
  if (s == null) return false;
  bool match = reg.hasMatch(s);
  return match;
}