createSync method

FileSystemEntity createSync({
  1. bool recursive = false,
})

Implementation

FileSystemEntity createSync({bool recursive = false}) {
	if (window.localStorage[_statKey] == null) {
		final now = DateTime.now();
		_stat("accessed", now);
		_stat("modified", now);
		_stat("changed", now);
	}
	return this;
}