customStatusPositionMultiplier property

double? customStatusPositionMultiplier

Allows you to change the location of the custom 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: 1.

Implementation

double? get customStatusPositionMultiplier => _customStatusPositionMultiplier;
void customStatusPositionMultiplier=(double? val)

Implementation

set customStatusPositionMultiplier(double? val) {
  _customStatusPositionMultiplier = val;
  _set({"customStatusPositionMultiplier": val});
}