EditorSettings constructor

EditorSettings({
  1. required String license,
  2. String sceneBaseUri = "https://cdn.img.ly/packages/imgly/cesdk-engine/1.31.0/assets",
  3. String? assetBaseUri,
  4. String? userId,
})

Creates new EditorSettings from the given properties.

The license is used to unlock the editor. The sceneBaseUri represents the base URI to the assets included in the scene of which the sources are specified as relative paths. The assetBaseUri is the base URI to the default assets of the asset library. The userId is the ID of the user that is associated with this instance.

Implementation

EditorSettings(
    {required this.license,
    this.sceneBaseUri =
        "https://cdn.img.ly/packages/imgly/cesdk-engine/1.31.0/assets",
    this.assetBaseUri,
    this.userId});