presentationRoutingInterfaceTemplateFile top-level constant

String const presentationRoutingInterfaceTemplateFile

Router interface template

Implementation

const presentationRoutingInterfaceTemplateFile = r'''
abstract class ITemplateRouter {
  void goToNextPage({List<dynamic>? args});
  void moveBack({List<dynamic>? args});
}
''';