<itemvalue="The path of the executable used to run the script in this isolate after it has been resolved by the OS. This is the absolute path, with all symlinks resolved, to the executable used to run the script. See [executable] for the unresolved version."/>
<itemvalue="Use [environment] to set the environment variables for the process. If not set the environment of the parent process is inherited. Currently, only US-ASCII environment variables are supported and errors are likely to occur if an environment variable with code-points outside the US-ASCII range is passed in."/>
<itemvalue="If [includeParentEnvironment] is `true`, the process's environment will include the parent process's environment, with [environment] taking precedence. Default is `true`."/>
<itemvalue="If [runInShell] is true, the process will be spawned through a system shell. On Linux and OS X, `binsh` is used, while `%WINDIR%\system32\cmd.exe` is used on Windows."/>
<itemvalue="NOTE: On Windows, if [executable] is a batch file ('.bat' or '.cmd'), it may be launched by the operating system in a system shell regardless of the value of [runInShell]. This could result in arguments being parsed according to shell rules. For example:"/>
<itemvalue="Encapsulates all the logic for initializing the process, without setting up the connection. Will throw if the process fails to start."/>
<itemvalue="Encapsulates all the logic for initializing the process, without setting up the connection. Will throw if the process fails to start."/>
<itemvalue="> The value returned by this getter implicitly converts floating-point > component values (such as `0.5`) into their 8-bit equivalent by using > the [toARGB32] method; the returned value is not guaranteed to be stable > across different platforms or executions due to the complexity of > floating-point math."/>
<itemvalue="> The value returned by this getter implicitly converts floating-point > component values (such as `0.5`) into their 8-bit equivalent by using > the [toARGB32] method; the returned value is not guaranteed to be stable > across different platforms or executions due to the complexity of > floating-point math."/>
<itemvalue="opacity"/>
<itemvalue="opacity"/>
@ -67,11 +72,6 @@
<itemvalue="Using [ImageByteFormat.rawRgba] on an image in the color space [ColorSpace.extendedSRGB] will result in the gamut being squished to fit into the sRGB gamut, resulting in the loss of wide-gamut colors."/>
<itemvalue="Using [ImageByteFormat.rawRgba] on an image in the color space [ColorSpace.extendedSRGB] will result in the gamut being squished to fit into the sRGB gamut, resulting in the loss of wide-gamut colors."/>
<itemvalue="Either the [width] and [height] arguments should be specified, or the widget should be placed in a context that sets tight layout constraints. Otherwise, the image dimensions will change as the image is loaded, which will result in ugly layout changes."/>
<itemvalue="Either the [width] and [height] arguments should be specified, or the widget should be placed in a context that sets tight layout constraints. Otherwise, the image dimensions will change as the image is loaded, which will result in ugly layout changes."/>
<itemvalue="This only accepts compressed image formats (e.g. PNG). Uncompressed formats like rawRgba (the default format of [dart:ui.Image.toByteData]) will lead to exceptions."/>
<itemvalue="This only accepts compressed image formats (e.g. PNG). Uncompressed formats like rawRgba (the default format of [dart:ui.Image.toByteData]) will lead to exceptions."/>
<itemvalue="Creates a widget that displays an [ImageStream] obtained from a [Uint8List]. The `bytes` argument specifies encoded image bytes, which can be encoded in any of the following supported image formats: {@macro dart.ui.imageFormats}"/>
<itemvalue="Unencoded bytes, in the image's existing format. For example, a grayscale image may use a single 8-bit channel for each pixel."/>
<itemvalue="A loss-less compression format for images. This format is well suited for images with hard edges, such as screenshots or sprites, and images with text. Transparency is supported. The PNG format supports images up to 2,147,483,647 pixels in either dimension, though in practice available memory provides a more immediate limitation on maximum image size."/>
<itemvalue="Raw RGBA format. Unencoded bytes, in RGBA row-primary form with premultiplied alpha, 8 bits per channel."/>
<itemvalue="Parses the [host] as an IP version 4 (IPv4) address, returning the address as a list of 4 bytes in network byte order (big endian). Throws a [FormatException] if [host] is not a valid IPv4 address representation."/>