AppRouteGet constructor

const AppRouteGet({
  1. required String path,
  2. String? name = null,
  3. String? transition = null,
})

Implementation

const AppRouteGet({
  required this.path,
  this.name = null,
  this.transition = null,
});