BloomRouteConfig constructor

const BloomRouteConfig({
  1. String? path,
  2. String? name,
  3. List<Type> guards = const [],
  4. String? title,
})

Creates a BloomRouteConfig annotation.

Implementation

const BloomRouteConfig({
  this.path,
  this.name,
  this.guards = const [],
  this.title,
});