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