initialize method

void initialize({
  1. required VideoEditorCallbacks callbacksFunction(),
  2. required VideoEditorConfigs configsFunction(),
})

Initializes the controller with provided callback and config functions.

Implementation

void initialize({
  required VideoEditorCallbacks Function() callbacksFunction,
  required VideoEditorConfigs Function() configsFunction,
}) {
  _callbacksFunction = callbacksFunction;
  _configsFunction = configsFunction;
}