URLRequestNetworkServiceType class

Class that represents the constants that specify how a request uses network resources.

Properties

hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

isSupported() bool
Checks if the value is supported by the defaultTargetPlatform.
name() String
Gets the name of the value.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toNativeValue() int?
Gets int native value if supported by the current platform, otherwise null.
toString() String
A string representation of this object.
override
toValue() int
Gets int value.

Operators

operator ==(Object value) bool
The equality operator.
override

Static Properties

values Set<URLRequestNetworkServiceType>
Set of all values of URLRequestNetworkServiceType.
final

Static Methods

asNameMap() Map<String, URLRequestNetworkServiceType>
Creates a map from the names of URLRequestNetworkServiceType values to the values.
byName(String? name) URLRequestNetworkServiceType?
Gets a possible URLRequestNetworkServiceType instance value with name name.
fromNativeValue(int? value) URLRequestNetworkServiceType?
Gets a possible URLRequestNetworkServiceType instance from a native value.
fromValue(int? value) URLRequestNetworkServiceType?
Gets a possible URLRequestNetworkServiceType instance from int value.

Constants

AV_STREAMING → const URLRequestNetworkServiceType
A service type for streaming audio/video data.
BACKGROUND → const URLRequestNetworkServiceType
A service type for background traffic.
CALL_SIGNALING → const URLRequestNetworkServiceType
A service type for call signaling.
DEFAULT → const URLRequestNetworkServiceType
A service type for standard network traffic.
RESPONSIVE_AV → const URLRequestNetworkServiceType
A service type for responsive (time-sensitive) audio/video data.
RESPONSIVE_DATA → const URLRequestNetworkServiceType
A service type for data that the user is actively waiting for.
VIDEO → const URLRequestNetworkServiceType
A service type for video traffic.
VOICE → const URLRequestNetworkServiceType
A service type for voice traffic.