viewportSize function
Tamanho real da viewport no navegador — usado para dimensionar a ilha Flutter para 100% da tela.
Implementation
({double width, double height}) viewportSize() => (
width: web.window.innerWidth.toDouble(),
height: web.window.innerHeight.toDouble(),
);