BuildAudienceType enum Null safety

Possible values: INTERNAL_ONLY, APP_STORE_ELEGIBLE

Inheritance

Constructors

BuildAudienceType(String? matcher)
Possible values: INTERNAL_ONLY, APP_STORE_ELEGIBLE
const

Values

internalOnly → const BuildAudienceType

The build of your app is only available to members of your development team.

BuildAudienceType('INTERNAL_ONLY')
appStoreElegible → const BuildAudienceType

The build of your app is eligible for submission and release on the App Store.

BuildAudienceType('APP_STORE_ELIGIBLE')

Properties

hashCode int
The hash code for this object.
read-only, inherited
index int
A numeric identifier for the enumerated value.
read-only, inherited
matcher String?
The string that matches the value of the Build Audience Type.
final
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent 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

fromMatcher(String? matcher) BuildAudienceType
Possible values: INTERNAL_ONLY, APP_STORE_ELEGIBLE

Constants

values → const List<BuildAudienceType>
A constant List of the values in this enum, in order of their declaration.
[internalOnly, appStoreElegible]