balloonScreen property
Property that defines the balloon slave screen number according to the screenAmount property. (Most right screen)
Implementation
int get balloonScreen {
int sA = int.parse(getScreenAmount()!);
if (sA == 1) {
return 1;
}
// Gets the most right screen.
return (sA / 2).floor() + 1;
}