CustomNavigator constructor

CustomNavigator({
  1. bool forward = true,
  2. bool replaceSingle = false,
  3. bool replaceAll = false,
  4. String namedRoute = '',
  5. required Function buildScreen,
  6. required BuildContext context,
})

Implementation

CustomNavigator({
	this.forward=true,
	this.replaceSingle=false,
	this.replaceAll=false,
	this.namedRoute='',
	required this.buildScreen,
	required this.context
});