define method

void define(
  1. String path,
  2. ContentView builder
)

Implementation

void define(String path, ContentView builder) {
  _routes[path] = () => builder;
}