larguraJanelaFiltrosPesquisa property

  1. @computed
double get larguraJanelaFiltrosPesquisa

Implementation

@computed
double get larguraJanelaFiltrosPesquisa{
  if( mobile || tablet ) {
    return width;
  } else if(desktop && width <1100){
    return width*0.50;
  }
  else{
    return width*0.40;
  }
}