getCacheDirAbsolutePath method

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

Implementation

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