getInternalCachePath method
Implementation
@override
Future<String?> getInternalCachePath() async {
try {
if (!Platform.isAndroid) throw _unsupportedPlatformException();
return await methodChannel.invokeMethod<String>('getInternalCachePath');
} on PlatformException catch (e) {
debugPrint('Error getting internal cache path: ${e.message}');
return null;
}
}