SaveFileText method
Save text data to file (write), returns true on success
Implementation
bool SaveFileText(
String fileName,
String text,
) => run(
() => _debugLabels.SaveFileText(fileName, text),
() => _flat.SaveFileText(
$.String$.ValueOrNull(fileName),
$.String$.ValueOrNull(text),
),
);