getCurrentFile method

Future<String?> getCurrentFile()

Implementation

Future<String?> getCurrentFile() async {
  final res = await _callFunc(
    jsonEncode({"key": "getCurrentFile", "params": []}),
  );
  return res;
}