GetMediaFileSystemsInteractivity class
class GetMediaFileSystemsInteractivity extends ChromeEnum {
static const GetMediaFileSystemsInteractivity NO = const GetMediaFileSystemsInteractivity._('no');
static const GetMediaFileSystemsInteractivity YES = const GetMediaFileSystemsInteractivity._('yes');
static const GetMediaFileSystemsInteractivity IF_NEEDED = const GetMediaFileSystemsInteractivity._('if_needed');
static const List<GetMediaFileSystemsInteractivity> VALUES = const[NO, YES, IF_NEEDED];
const GetMediaFileSystemsInteractivity._(String str): super(str);
}
Extends
ChromeEnum > GetMediaFileSystemsInteractivity
Static Properties
const GetMediaFileSystemsInteractivity IF_NEEDED #
static const GetMediaFileSystemsInteractivity IF_NEEDED = const GetMediaFileSystemsInteractivity._('if_needed')
const GetMediaFileSystemsInteractivity NO #
static const GetMediaFileSystemsInteractivity NO = const GetMediaFileSystemsInteractivity._('no')
const List<GetMediaFileSystemsInteractivity> VALUES #
static const List<GetMediaFileSystemsInteractivity> VALUES = const[NO, YES, IF_NEEDED]
const GetMediaFileSystemsInteractivity YES #
static const GetMediaFileSystemsInteractivity YES = const GetMediaFileSystemsInteractivity._('yes')
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;