page static method

FSPage page(
  1. String pageName, {
  2. Map<String, Object?>? properties,
})

Create a Fullstory Page object

Pages can be created for each screen or logical section of your app to segment analytics and enable page-specific features such as Heatmaps and Journeys

Call FSPage.start() on the returned FSPage object to mark the page as active.

For more information, see https://help.fullstory.com/hc/en-us/articles/14795945510295-Mobile-App-Pages-in-Fullstory

Implementation

static FSPage page(String pageName, {Map<String, Object?>? properties}) {
  return FSPage._(
      FullstoryFlutterPlatform.instance.page(pageName, properties ?? {}));
}