Parses the given string into a map of arguments. It assumes the string is in the format of: arg0="value0" arg1="value1"
arg0="value0" arg1="value1"
Map<String, String> parseArgs(String data) => MapUtil.parse(data, backslash: false);