initialize method
void
initialize({
- required VideoEditorCallbacks callbacksFunction(),
- 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;
}