defineGlobalFunction method

void defineGlobalFunction(
  1. String name,
  2. Function function
)

Implementation

void defineGlobalFunction(String name, Function function) {
  _globals.define(name, function);
}