LibraryConfiguration.dynamic constructor Null safety

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

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,
}) : process = null;