isFunctionCallComplete static method
Check if function call structure is complete
Implementation
static bool isFunctionCallComplete(String buffer, {ModelType? modelType}) {
return FunctionCallFormatFactory.create(modelType)
.isFunctionCallComplete(buffer);
}