| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
linter: Refactor flutter utils
Previously, this library was a handfful of top-level functions, which
all deferred to instance methods on a static instance of _Flutter. But this instance of _Flutter was also perfectly static, only instantiated one time, with constant strings as constructor arguments.
So I moved each instance method to the outer public function that called
it, and inlined flutter package URLs.
(These URLs will not change with Featherlight; none are concerned with
material or cupertino.)
Some methods were unused, like `hasWidgetAsAscendant`, so I deleted
them.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |