timmaffett / material_symbols_icons

Complete Flutter support for google's Material DesignMaterial Symbols Icons
Apache License 2.0
32 stars 5 forks source link

Static Extensions has to be called by the Extension Name #25

Closed Chrissdroid closed 2 weeks ago

Chrissdroid commented 2 weeks ago

Dart doesn't support static extension methods on the class itself. You need to call the static fonction by it's extension name to work.

See https://github.com/dart-lang/language/issues/723

timmaffett commented 2 weeks ago

@Chrissdroid Great catch! Thanks!