parseArgs function

Map<String, String> parseArgs(
  1. String data
)

Parses the given string into a map of arguments. It assumes the string is in the format of: arg0="value0" arg1="value1"

Implementation

Map<String, String> parseArgs(String data)
=> MapUtil.parse(data, backslash: false);