GetInformationParser<T> constructor

GetInformationParser<T>({
  1. required String initialRoute,
})

Creates a GetInformationParser instance with the provided initial route.

The initialRoute parameter specifies the route to navigate to if the current location is empty or "/" and there is no corresponding page registered.

Implementation

GetInformationParser({
  required this.initialRoute,
}) {
  Get.log("GetInformationParser is created !");
}