DirectoryExists method
Check if a directory path exists
Implementation
@override
bool DirectoryExists(
String dirPath,
) => run(
() => RaylibDebugLabels.DirectoryExists(dirPath),
() => rl.Core.DirectoryExists(
rl.Temp.String$.ValueOrNull(dirPath),
),
);