danschultz / browser_detect.dart

A Dart package that provides information about the user's web browser.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Consider using lazy initialization for the browser variable

kasperl opened this issue · comments

Maybe something like this:

final Browser browser = _computeBrowser();
Browser _computeBrowser() {
...
}

See http://news.dartlang.org/2012/02/static-variables-no-longer-have-to-be.html for more details.