VxRoutePage constructor

VxRoutePage({
  1. String? pageName,
  2. Widget? child,
  3. bool maintainState = true,
  4. bool fullscreenDialog = false,
  5. Widget transition(
    1. Animation<double> animation,
    2. Widget child
    )?,
  6. bool isTransparent = false,
})

Implementation

VxRoutePage({
  this.pageName,
  this.child,
  this.maintainState = true,
  this.fullscreenDialog = false,
  this.transition,
  this.isTransparent = false,
}) : super(key: _createPageKey(pageName));