fromString static method
Файл с содержимым из заданной строки.
- Parameter contents: Содержимое файла.
Implementation
static File fromString(
String contents
) {
var _a0 = contents._copyFromDartTo_CString();
_CFile res = _CFile_S_fromString_CString(_a0);
_a0._releaseIntermediate();
final t = res._toDart();
res._releaseIntermediate();
return t;
}