ChooseEntryType class
class ChooseEntryType extends ChromeEnum {
static const ChooseEntryType OPEN_FILE = const ChooseEntryType._('openFile');
static const ChooseEntryType OPEN_WRITABLE_FILE = const ChooseEntryType._('openWritableFile');
static const ChooseEntryType SAVE_FILE = const ChooseEntryType._('saveFile');
static const ChooseEntryType OPEN_DIRECTORY = const ChooseEntryType._('openDirectory');
static const List<ChooseEntryType> VALUES = const[OPEN_FILE, OPEN_WRITABLE_FILE, SAVE_FILE, OPEN_DIRECTORY];
const ChooseEntryType._(String str): super(str);
}
Extends
ChromeEnum > ChooseEntryType
Static Properties
const ChooseEntryType OPEN_DIRECTORY #
static const ChooseEntryType OPEN_DIRECTORY = const ChooseEntryType._('openDirectory')
const ChooseEntryType OPEN_FILE #
static const ChooseEntryType OPEN_FILE = const ChooseEntryType._('openFile')
const ChooseEntryType OPEN_WRITABLE_FILE #
static const ChooseEntryType OPEN_WRITABLE_FILE = const ChooseEntryType._('openWritableFile')
const ChooseEntryType SAVE_FILE #
static const ChooseEntryType SAVE_FILE = const ChooseEntryType._('saveFile')
const List<ChooseEntryType> VALUES #
static const List<ChooseEntryType> VALUES = const[OPEN_FILE, OPEN_WRITABLE_FILE, SAVE_FILE, OPEN_DIRECTORY]
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;