TileRegionEstimateResult class

The result of tile region estimation.

Constructors

TileRegionEstimateResult({required double errorMargin, required int transferSize, required int storageSize, Map<String?, Object?>? extraOptions})

Properties

errorMargin double
Error margin of the estimate, given a fixed confidence level of 99.9%, represented by a value between 0 and 1. There is a 99.9% probability that the real value is contained in the interval (1 - errorMargin) * estimated value, (1 + errorMargin) * estimated value.
getter/setter pair
extraOptions Map<String?, Object?>?
Reserved for future use.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
storageSize int
Estimated number of bytes required to store the tile region on disk after the download is complete.
getter/setter pair
transferSize int
Estimated number of bytes that would have to be transferred from the network in order to download the estimated tile region.
getter/setter pair

Methods

encode() Object
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

decode(Object result) TileRegionEstimateResult