getQueueStatus method
Get details about the current queue status
Implementation
@override
Future<Map<String, dynamic>> getQueueStatus() async {
try {
final status = await _channel.invokeMethod('getQueueStatus');
return Map<String, dynamic>.from(status);
} on PlatformException catch (e) {
throw Exception("Failed to get queue status: ${e.message}");
}
}