slintBuilder function

Builder slintBuilder(
  1. BuilderOptions options
)

Entry point for build_runner (wired up in build.yaml): turns every ui/**.slint into lib/**.g.dart of typed wrappers.

The .slint files live outside lib/ so they are plainly not Dart sources and never part of the package's public API; the generated Dart goes under lib/ because that is the only place app code can import it from. ui/ is a build_runner source only when the app's build.yaml lists it (see examples/todo/build.yaml).

Implementation

Builder slintBuilder(BuilderOptions options) => _SlintBuilder();