isFunctionCallComplete static method

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

Check if function call structure is complete

Implementation

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