LibraryConfiguration.dynamic constructor

LibraryConfiguration.dynamic(
  1. String? name, {
  2. bool? appendExtension = true,
  3. String? version,
  4. bool? isAppleFramework = false,
})

Creates a configuration for a dynamic library opened with DynamicLibrary.open.

If appendExtension is true (default), the file extension which is used for dynamic libraries on the current platform is appended to name.

Implementation

LibraryConfiguration.dynamic(
  this.name, {
  this.appendExtension = true,
  this.version,
  this.isAppleFramework = false,
}) : process = null;