DebugAppDirService class
DebugAppDirService
is a specialized version of AppDirService that is designed for debugging purposes.
It wraps an existing AppDirService instance and modifies its behavior to create a /debug
subdirectory
within the application directory.
This is useful for segregating debug-related files from the main application directory, making it easier to manage files during debugging.
Takes an AppDirService instance as an argument, which this class will wrap and modify.
Example:
var originalService = AppDirService();
var debugService = DebugAppDirService(originalService);
- Inheritance
-
- Object
- AppDirService
- DebugAppDirService
Constructors
- DebugAppDirService(AppDirService appDirService)
-
DebugAppDirService is a specialized version of AppDirService that is designed for debugging purposes.
It wraps an existing AppDirService instance and modifies its behavior to create a
/debug
subdirectory within the application directory.
Properties
- appDirService → AppDirService
-
The original AppDirService instance that this class will wrap and modify.
final
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
resolveApplicationDirectory(
) → Future< Directory> -
Returns a Future that resolves to a
Directory
object representing the directory where the application should store its files.override -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited