EjectDeviceResultCode enum
Values
- success → const EjectDeviceResultCode
-
The ejection command is successful -- the application can prompt the user to remove the device.
const EjectDeviceResultCode('success')
- inUse → const EjectDeviceResultCode
-
The device is in use by another application. The ejection did not succeed; the user should not remove the device until the other application is done with the device.
const EjectDeviceResultCode('in_use')
- noSuchDevice → const EjectDeviceResultCode
-
There is no such device known.
const EjectDeviceResultCode('no_such_device')
- failure → const EjectDeviceResultCode
-
The ejection command failed.
const EjectDeviceResultCode('failure')
Properties
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 Methods
-
fromJS(
String value) → EjectDeviceResultCode
Constants
-
values
→ const List<
EjectDeviceResultCode> - A constant List of the values in this enum, in order of their declaration.