anchoWithHorientacion property

double get anchoWithHorientacion

Implementation

double get anchoWithHorientacion {
  if (isvertical) {
    return MediaQuery.of(this).size.width / 100;
  } else {
    return MediaQuery.of(this).size.height / 100;
  }
}