AntApp.router constructor

const AntApp.router({
  1. Key? key,
  2. required bool showPerformanceOverlay,
  3. required RouteInformationParser<Object>? routeInformationParser,
  4. required RouterDelegate<Object>? routerDelegate,
})

Implementation

const AntApp.router({
  Key? key,
  required this.showPerformanceOverlay,
  required this.routeInformationParser,
  required this.routerDelegate,
})  : home = null,
      super(key: key);