registerFunctions method

void registerFunctions(
  1. Map<String, JsonWidgetFunction> functions
)

Registers the function bindings. This is a convenience method that calls registerFunction for each entry in functions.

Implementation

void registerFunctions(Map<String, JsonWidgetFunction> functions) =>
    functions.forEach((key, value) => registerFunction(key, value));