IsPathFile method
Check if a given path is a file or a directory
Implementation
@override
bool IsPathFile(
String path,
) => run(
() => RaylibDebugLabels.IsPathFile(path),
() => rl.Core.IsPathFile(
rl.Temp.String$.ValueOrNull(path),
),
);