switchFile method
Implementation
Future switchFile({
required String fileId,
String? boardId,
String? stepIndex,
}) async {
final res = await _callFunc(
jsonEncode({
"key": "switchFile",
"params": [fileId, boardId, stepIndex],
}),
);
return res;
}