getCacheDirAbsolutePath method
Implementation
@override
Future<String> getCacheDirAbsolutePath() async {
final result =
await methodChannel.invokeMethod<String>('getCacheDirAbsolutePath');
if (result == null) {
throw "getCacheDirAbsolutePath get null";
}
return result;
}