MakeDirectory method

  1. @override
int MakeDirectory(
  1. String dirPath
)
override

Implementation

@override
int MakeDirectory(
  String dirPath,
) => run(
  () => RaylibDebugLabels.MakeDirectory(dirPath),
  () => rl.Core.MakeDirectory(
    rl.Temp.String$.ValueOrNull(dirPath),
  ),
);