resultStatusPositionMultiplier property
double?
get
resultStatusPositionMultiplier
Allows you to change the location of the result status.
For example, if you set the multiplier to 0.5 and the number of pixels by vertical is equal to 800, your message will be centralized and located at 200 px from the top, i.e. (800 / 2) * 0.5 = 200 px. If the multiplier is equal to 1, the message will be centered. If the multiplier is equal to zero, the default location will be used.
Default: 0.
Implementation
double? get resultStatusPositionMultiplier => _resultStatusPositionMultiplier;
set
resultStatusPositionMultiplier
(double? val)
Implementation
set resultStatusPositionMultiplier(double? val) {
_resultStatusPositionMultiplier = val;
_set({"resultStatusPositionMultiplier": val});
}