GetInformationParser<T>.createInformationParser constructor

GetInformationParser<T>.createInformationParser({
  1. String initialRoute = "/",
})

Creates a GetInformationParser instance with the provided initial route.

This is a named constructor that provides a more readable way to create an instance of GetInformationParser.

Implementation

factory GetInformationParser.createInformationParser({
  String initialRoute = "/",
}) =>
    GetInformationParser<T>(initialRoute: initialRoute);