queueSize property

Future<int?> queueSize

Implementation

static Future<int?> get queueSize async {
  final int? queueSize = await _channel.invokeMethod('queueSize');
  return queueSize;
}