PlatformArch enum

The machine's processor architecture.

Inheritance
Available extensions

Values

arm → const PlatformArch

Specifies the processer architecture as arm.

const PlatformArch('arm')
arm64 → const PlatformArch

Specifies the processer architecture as arm64.

const PlatformArch('arm64')
x8632 → const PlatformArch

Specifies the processer architecture as x86-32.

const PlatformArch('x86-32')
x8664 → const PlatformArch

Specifies the processer architecture as x86-64.

const PlatformArch('x86-64')
mips → const PlatformArch

Specifies the processer architecture as mips.

const PlatformArch('mips')
mips64 → const PlatformArch

Specifies the processer architecture as mips64.

const PlatformArch('mips64')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
toJS String
no setter
value String
final

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) PlatformArch

Constants

values → const List<PlatformArch>
A constant List of the values in this enum, in order of their declaration.