DllEntry class
Class holding the DLL entry properties.
Constructors
- DllEntry.new({required String path, required String name, bool required = true, DllSource source = DllSource.project})
- DllEntry.fromJson(dynamic json)
-
factory
Properties
- absolutePath → String
-
Get dll file absolute path.
no setter
- hashCode → int
-
The hash code for this object.
no setterinherited
- name → String
-
The name for the DLL. Defaults to the basename of the path.
final
- path → String
-
The path to the DLL file.
final
- required → bool
-
A flag indicating if the DLL is required. Defaults to true.
final
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- source → DllSource
-
An enum indicating the source of the DLL. Defaults to DllSource.project.
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
Static Methods
-
validateConfig(
dynamic option) → String?