containsFunctionCall static method
Returns true if source contains a call to functionName.
sourceにfunctionNameの呼び出しが含まれている場合はtrueを返します。
Implementation
static bool containsFunctionCall(String source, String functionName) {
return source.contains("$functionName(");
}