getCodeCacheDirAbsolutePath method

  1. @override
Future<String?> getCodeCacheDirAbsolutePath()
override

Implementation

@override
Future<String?> getCodeCacheDirAbsolutePath() async{
  final result = await methodChannel.invokeMethod<String>('getCodeCacheDirAbsolutePath');
  return result;
}