dispatchBackgroundDecrypt method
Uses compute to do decryption in the background.
Implementation
@override
Future<List> dispatchBackgroundDecrypt(List args) async {
return await compute(
_computeDecrypt,
[secretKeyLength, nonceLength, ...args],
debugLabel: 'BackgroundAesGcm.decrypt',
);
}