wordexp function

List<String> wordexp(
  1. String words, {
  2. int flags = 0,
})

Implementation

List<String> wordexp(String words, {int flags = 0}) {
  return platform.wordexp(words, flags);
}