<itemvalue="The default for whether to use Windows or non-Windows semantics is determined from the platform Dart is running on. When running in the standalone VM, this is detected by the VM based on the operating system. When running in a browser, non-Windows semantics is always used."/>
<itemvalue="If the URI is absolute, the path starts with a path separator unless Windows semantics is used and the first path segment is a drive letter. When Windows semantics is used, a host component in the uri in interpreted as a file server and a UNC path is returned."/>
<itemvalue="For Windows semantics, the backslash ("\\") separator is used to separate path segments."/>
@ -61,13 +62,12 @@
<itemvalue="Writes a string to a file. Opens the file, writes the string in the given encoding, and closes the file. Returns a `Future<File>` that completes with this [File] object once the entire operation has completed. By default [writeAsString] creates the file for writing and truncates the file if it already exists. In order to append the bytes to an existing file, pass [FileMode.append] as the optional mode parameter. If the argument [flush] is set to `true`, the data written will be flushed to the file system before the returned future completes."/>
<itemvalue="absorption"/>
<itemvalue="SYSTEM UI FLAG IMMERSIVE"/>
<itemvalue="Window flag: hide all screen decorations (such as the status bar) while this window is displayed. This allows the window to use the entire display space for itself -- the status bar will be hidden when an app window with this flag set is on the top layer. A fullscreen window will ignore a value of SOFT_INPUT_ADJUST_RESIZE for the window's softInputMode field; the window will stay fullscreen and will not resize. This flag can be controlled in your theme through the android. R. attr. windowFullscreen attribute; this attribute is automatically set for you in the standard fullscreen themes such as android. R. style. Theme_NoTitleBar_Fullscreen, android. R. style. Theme_Black_NoTitleBar_Fullscreen, android. R. style. Theme_Light_NoTitleBar_Fullscreen, android. R. style. Theme_Holo_NoActionBar_Fullscreen, android. R. style. Theme_Holo_Light_NoActionBar_Fullscreen, android. R. style. Theme_DeviceDefault_NoActionBar_Fullscreen, and android. R. style. Theme_DeviceDefault_Light_NoActionBar_Fullscreen. Deprecated Use WindowInsetsController. hide(int) with WindowInsets. Type. statusBars() instead."/>