processQueue method
Forces queue processing
Starts pending tasks if there are free slots
Implementation
@override
Future<bool> processQueue() async {
try {
final result = await methodChannel.invokeMethod<bool>('processQueue');
return result ?? false;
} on PlatformException catch (e) {
throw PlatformException(
code: e.code,
message: e.message,
details: e.details,
);
}
}