isFunctionCallStart static method

bool isFunctionCallStart(
  1. String buffer, {
  2. ModelType? modelType,
})

Check if buffer starts with function call indicators

Implementation

static bool isFunctionCallStart(String buffer, {ModelType? modelType}) {
  return FunctionCallFormatFactory.create(modelType).isFunctionCallStart(buffer);
}