updateProperties method

Future<void> updateProperties(
  1. Map<String, Object?> properties
)

Merge the given properties into the page's existing properties (if any).

Implementation

Future<void> updateProperties(Map<String, Object?> properties) async {
  return FullstoryFlutterPlatform.instance
      .updatePageProperties(await _id, properties);
}