trackScreen static method

Future<bool?> trackScreen(
  1. String screen, [
  2. Map<String, dynamic>? properties
])

Send to Screeb backend a tracking screen name with optional properties

This api call is important to trigger a survey where the targeting is configured using screens parameters.

Implementation

static Future<bool?> trackScreen(String screen, [Map<String, dynamic>? properties]) =>
    _channel.invokeMethod('trackScreen', [screen, _formatDates(properties)]);