<itemvalue="Draws the subset of the given image described by the `src` argument into the canvas in the axis-aligned rectangle given by the `dst` argument. This might sample from outside the `src` rect by up to half the width of an applied filter. Multiple calls to this method with different arguments (from the same image) can be batched into a single call to [drawAtlas] to improve performance." />
<itemvalue="When this is null, the [color] is used instead." />
<itemvalue="The shader to use when stroking or filling a shape. When this is null, the [color] is used instead. See also: [Gradient], a shader that paints a color gradient. [ImageShader], a shader that tiles an [Image]. [colorFilter], which overrides [shader]. [color], which is used if [shader] and [colorFilter] are null." />
<itemvalue="The shader to use when stroking or filling a shape." />
<itemvalue="compose"/>
<itemvalue="compose"/>
<itemvalue="matrix"/>
<itemvalue="matrix"/>
<itemvalue="erode"/>
<itemvalue="erode"/>
<itemvalue="dilate"/>
<itemvalue="dilate"/>
<itemvalue="blur"/>
<itemvalue="A filter operation to apply to a raster image."/>
<itemvalue="Creates a color filter that applies the inverse of the sRGB gamma curve to the RGB channels."/>
<itemvalue="Construct a color filter that applies the sRGB gamma curve to the RGB channels."/>
<itemvalue="Draws the subset of the given image described by the `src` argument into the canvas in the axis-aligned rectangle given by the `dst` argument. This might sample from outside the `src` rect by up to half the width of an applied filter. Multiple calls to this method with different arguments (from the same image) can be batched into a single call to [drawAtlas] to improve performance."/>
<itemvalue="The shader to use when stroking or filling a shape. When this is null, the [color] is used instead. See also: [Gradient], a shader that paints a color gradient. [ImageShader], a shader that tiles an [Image]. [colorFilter], which overrides [shader]. [color], which is used if [shader] and [colorFilter] are null."/>
<itemvalue="Composes the `inner` filter with `outer`, to combine their effects. Creates a single [ImageFilter] that when applied, has the same effect as subsequently applying `inner` and `outer`, i.e., result = outer(inner(source))."/>
<itemvalue="Composes the `inner` filter with `outer`, to combine their effects. Creates a single [ImageFilter] that when applied, has the same effect as subsequently applying `inner` and `outer`, i.e., result = outer(inner(source))."/>
<itemvalue="[BackdropFilter], a widget that applies [ImageFilter] to its rendering. [ImageFiltered], a widget that applies [ImageFilter] to its children. [SceneBuilder.pushBackdropFilter], which is the low-level API for using this class as a backdrop filter. [SceneBuilder.pushImageFilter], which is the low-level API for using this class as a child layer filter."/>
<itemvalue="[BackdropFilter], a widget that applies [ImageFilter] to its rendering. [ImageFiltered], a widget that applies [ImageFilter] to its children. [SceneBuilder.pushBackdropFilter], which is the low-level API for using this class as a backdrop filter. [SceneBuilder.pushImageFilter], which is the low-level API for using this class as a child layer filter."/>
<itemvalue="The time of the last change to the data or metadata of the file system object. On Windows platforms, this is instead the file creation time."/>
<itemvalue="The time of the last change to the data or metadata of the file system object. On Windows platforms, this is instead the file creation time."/>
@ -62,12 +68,6 @@
<itemvalue="Forces an existing file with the same name to be truncated to zero length when creating a file by specifying [create]. [create] MUST also be specified if this flag is used."/>
<itemvalue="Forces an existing file with the same name to be truncated to zero length when creating a file by specifying [create]. [create] MUST also be specified if this flag is used."/>
<itemvalue="Causes the request to fail if the named file already exists. [create] MUST also be specified if this flag is used."/>
<itemvalue="Causes the request to fail if the named file already exists. [create] MUST also be specified if this flag is used."/>
<itemvalue="Force all writes to append data at the end of the file."/>
<itemvalue="Force all writes to append data at the end of the file."/>
<itemvalue="Open the file for writing. If both this and [read] are specified, the file is opened for both reading and writing."/>
<itemvalue="Load a new sound to be played once or multiple times later, from an asset."/>
<itemvalue="synthesize"/>
<itemvalue="Returns time taken to execute this session in milliseconds or zero (0) if the session is not over yet."/>
<itemvalue="The mode value as a human-readable string. The string is in the format "rwxrwxrwx", reflecting the user, group, and world permissions to read, write, and execute the file system object, with "-" replacing the letter for missing permissions. Extra permission bits may be represented by prepending "(suid)", "(guid)", andor "(sticky)" to the mode string."/>
<itemvalue="Retrieve a binary resource from the asset bundle as a data stream. Throws an exception if the asset is not found. The returned [ByteData] can be converted to a [Uint8List] (a list of bytes) using [Uint8List.sublistView]. Lists of bytes can be used with APIs that accept [Uint8List] objects, such as [decodeImageFromList], as well as any API that accepts a [List<int>], such as [File.writeAsBytes] or [Utf8Codec.decode] (accessible via [utf8])."/>