RoutebornPage constructor

RoutebornPage(
  1. String name, {
  2. dynamic pageArgs,
})

Use this constructor in case you need to initialize the builder later (for the purpose of accessing the page instance).

pageArgs parameter is used to distinguish each page instance

Implementation

RoutebornPage(
  String name, {
  dynamic pageArgs,
}) : super(
        key: _createKey(name, pageArgs),
        name: name,
      );