start method

Future<void> start({
  1. Map<String, Object?>? propertyUpdates,
})

Start the current page. May be called multiple times if the page is visited more than once.

Implementation

Future<void> start({Map<String, Object?>? propertyUpdates}) async {
  return FullstoryFlutterPlatform.instance
      .startPage(await _id, propertyUpdates ?? {});
}