MakeDirectory method

int MakeDirectory(
  1. String dirPath
)

Implementation

int MakeDirectory(
  String dirPath,
) => run(
  () => 'MakeDirectory($dirPath)',
  () => rl.Core.MakeDirectory(refStr(dirPath)),
);