Group: style
Maturity: stable
Dart SDK: >= 2.6.0 • (Linter v0.1.97+1)
Since info is static, may be staleFrom the style guide:
DO name extensions using UpperCamelCase
.
Extensions should capitalize the first letter of each word (including the first word), and use no separators.
GOOD:
extension MyFancyList<T> on List<T> {
// ...
}
extension SmartIterable<T> on Iterable<T> {
// ...
}