Duncan McGregor
Duncan McGregor
Changed yellow to green, as yellow is not a primary color, so the example is wrong
### Page URL https://dart.dev/language/patterns/ ### Page source https://github.com/dart-lang/site-www/tree/main/src/content/language/patterns.md ### Describe the problem Change yellow to green. And no I can't fix it myself, because I tried and there is some...
Just spitballing here, but converting a build.gradle to build.gradle.kts, having to add all the `apply`s is a bit annoying. ```kotlin operator fun T.invoke(block: T.() -> Unit) = this.apply(block) ``` lets...