isDefinitelyText static method
Checks if buffer looks definitely like text (not a function call)
Implementation
static bool isDefinitelyText(String buffer, {ModelType? modelType}) {
return FunctionCallFormatFactory.create(modelType).isDefinitelyText(buffer);
}