Route constructor

Route(
  1. Component builder()?, {
  2. bool transparent = false,
  3. bool maintainState = true,
})

Implementation

Route(
  Component Function()? builder, {
  this.transparent = false,
  this.maintainState = true,
})  : _builder = builder,
      _renderEffect = Decorator();