dart:io
FileLock class
Type of lock when requesting a lock on a file.
Properties
- hashCode → int
read-only, inherited
- The hash code for this object. [...]
- runtimeType → Type
read-only, inherited
- A representation of the runtime type of the object.
Methods
- noSuchMethod(Invocation invocation) → dynamic
inherited
- Invoked when a non-existent method or property is accessed. [...]
- toString() → String
inherited
- Returns a string representation of this object.
Operators
- operator ==(dynamic other) → bool
inherited
- The equality operator. [...]
Constants
- BLOCKING_EXCLUSIVE → const FileLock
-
blockingExclusive
- BLOCKING_SHARED → const FileLock
-
blockingShared
- blockingExclusive → const FileLock
- Blocking exclusive file lock.
const FileLock._internal(4)
- blockingShared → const FileLock
- Blocking shared file lock.
const FileLock._internal(3)
- EXCLUSIVE → const FileLock
-
exclusive
- exclusive → const FileLock
- Exclusive file lock.
const FileLock._internal(2)
- SHARED → const FileLock
-
shared
- shared → const FileLock
- Shared file lock.
const FileLock._internal(1)