FigExecuteCommandFunction typedef
FigExecuteCommandFunction =
Future<ShellCommandResult> Function({required List<String> args, required String command})
Implementation
typedef FigExecuteCommandFunction = Future<ShellCommandResult> Function({
required String command,
required List<String> args,
});