Routing constructor

Routing({
  1. String current = '',
  2. String previous = '',
  3. dynamic args,
  4. String removed = '',
  5. Route? route,
  6. bool? isBack,
  7. bool? isBottomSheet,
  8. bool? isDialog,
})

Implementation

Routing({
  this.current = '',
  this.previous = '',
  this.args,
  this.removed = '',
  this.route,
  this.isBack,
  // this.isSnackbar,
  this.isBottomSheet,
  this.isDialog,
});