isFunctionCallStart static method
Check if buffer starts with function call indicators
Implementation
static bool isFunctionCallStart(String buffer, {ModelType? modelType}) {
return FunctionCallFormatFactory.create(modelType).isFunctionCallStart(buffer);
}