queueSize property

Future<int> queueSize

Retrieves the total number of Analytics hits in the tracking queue.

Implementation

static Future<int> get queueSize =>
    _channel.invokeMethod('getQueueSize').then((value) => value ?? 0);