<itemvalue="The FFT data representing n2+1 frequency components, where n is the capture size, with a frequency range from 0 to [samplingRate]. The first two elements contain the real parts of the 0th and (n2)th frequency component. The remaining elements contain the alternating real and imaginary parts of the frequency components up to the (n2-1)th one."/>
<itemvalue="av Audio Session Set Active Options"/>
<itemvalue="android Audio Attributes"/>
<itemvalue="android Audio Focus Gain Type"/>
<itemvalue="android Will Pause When Ducked"/>
<itemvalue="spoken Audio"/>
<itemvalue="movie Playback"/>
<itemvalue="measurement"/>
<itemvalue="game Chat"/>
<itemvalue="default Mode"/>
<itemvalue="AV Audio Session Mode"/>
<itemvalue="multi Route"/>
<itemvalue="play And Record"/>
<itemvalue="record"/>
<itemvalue="playback"/>
<itemvalue="solo Ambient"/>
<itemvalue="ambient"/>
<itemvalue="AV Audio Session Category"/>
<itemvalue="gain Transient Exclusive"/>
<itemvalue="gain Transient May Duck"/>
<itemvalue="gain Transient"/>
<itemvalue="Inform the operating system of our app's audio attributes etc. We pick a reasonable default for an app that plays speech."/>
<itemvalue="feat: combine process by ppid; top mem process show rss."/>
<itemvalue="feat: combine process by ppid; mem top process show rss."/>
<itemvalue="combine"/>
@ -18,50 +57,14 @@
<itemvalue="Creates a new timer. The [callback] function is invoked after the given [duration]. Example: ```dart final timer = Timer(const Duration(seconds: 5), () => print('Timer finished')); Outputs after 5 seconds: "Timer finished". ```"/>
<itemvalue="A countdown timer that can be configured to fire once or repeatedly. The timer counts down from the specified duration to 0. When the timer reaches 0, the timer invokes the specified callback function. Use a periodic timer to repeatedly count down the same interval. A negative duration is treated the same as a duration of 0. If the duration is statically known to be 0, consider using [run]. Frequently the duration is either a constant or computed as in the following example (taking advantage of the multiplication operator of the [Duration] class): ```dart void main() { scheduleTimeout(5 1000); 5 seconds. } Timer scheduleTimeout([int milliseconds = 10000]) => Timer(Duration(milliseconds: milliseconds), handleTimeout); void handleTimeout() { callback function Do some work. } ``` Note: If Dart code using [Timer] is compiled to JavaScript, the finest granularity available in the browser is 4 milliseconds. See also: [Stopwatch] for measuring elapsed time."/>
<itemvalue="Seems .unityLibrarybuild.gradle has bean resolved"/>
<itemvalue="Skip resolve script because another process running"/>
<itemvalue="resolve"/>
<itemvalue="If false the text field is "disabled": it ignores taps and its [decoration] is rendered in grey. If non-null this property overrides the [decoration]'s [InputDecoration.enabled] property."/>
<itemvalue="Used by subclasses to assert that the [ChangeNotifier] has not yet been disposed. {@tool snippet} The `debugAssertNotDisposed` function should only be called inside of an assert, as in this example. ```dart class MyNotifier with ChangeNotifier { void doUpdate() { assert(ChangeNotifier.debugAssertNotDisposed(this)); ... } } ``` {@end-tool} This is static and not an instance method because too many people try to implement ChangeNotifier instead of extending it (and so it is too breaking to add a method, especially for debug)."/>
<itemvalue="Controls how tall the selection highlight boxes are computed to be. See [ui.BoxHeightStyle] for details on available styles."/>
<itemvalue="The base fill color of the decoration's container color. When [InputDecorator.isHovering] is true, the [hoverColor] is also blended into the final fill color. By default the fillColor is based on the current [Theme]. The decoration's container is the area which is filled if [filled] is true and bordered per the [border]. It's the area adjacent to [icon] and above the widgets that contain [helperText], [errorText], and [counterText]."/>
<itemvalue="dimension"/>
<itemvalue="Create Private Group Chat Page"/>
<itemvalue="The path of the executable used to run the script in this isolate. Usually `dart` when running on the Dart VM or the compiled script name (`script_name.exe`). The literal path used to identify the executable. This path might be relative or just be a name from which the executable was found by searching the system path. Use [resolvedExecutable] to get an absolute path to the executable."/>
<itemvalue="Shape Clipper"/>
<itemvalue="Sub Rects Clipper"/>
<itemvalue="Custom Clipper"/>
<itemvalue="Whether the strut height should be forced. When true, all lines will be laid out with the height of the strut. All line and run-specific metrics will be ignoredoverridden and only strut metrics will be used instead. This property guarantees uniform line spacing, however text in adjacent lines may overlap. This property should be enabled with caution as it bypasses a large portion of the vertical layout system. This is equivalent to setting [TextStyle.height] to zero for all [TextStyle]s in the paragraph. Since the height of each line is calculated as a max of the metrics of each run of text, zero height [TextStyle]s cause the minimums defined by strut to always manifest, resulting in all lines having the height of the strut. The default is false."/>
<itemvalue="The horizontal line used to align ideographic characters."/>
<itemvalue="The horizontal line used to align the bottom of glyphs for alphabetic characters. alphabetic, The horizontal line used to align ideographic characters. ideographic,"/>
<itemvalue="A horizontal line used for aligning text."/>
<itemvalue="Creates a new TextHeightBehavior object. applyHeightToFirstAscent: When true, the [TextStyle.height] modifier will be applied to the ascent of the first line. When false, the font's default ascent will be used. applyHeightToLastDescent: When true, the [TextStyle.height] modifier will be applied to the descent of the last line. When false, the font's default descent will be used. leadingDistribution: How the leading is distributed over and under text. All properties default to true (height modifications applied as normal)."/>
<itemvalue="{@template dart.ui.textHeightBehavior} Defines how to apply [TextStyle.height] over and under text. [TextHeightBehavior.applyHeightToFirstAscent] and [TextHeightBehavior.applyHeightToLastDescent] represent whether the [TextStyle.height] modifier will be applied to the corresponding metric. By default both properties are true, and [TextStyle.height] is applied as normal. When set to false, the font's default ascent will be used. [TextHeightBehavior.leadingDistribution] determines how the leading is distributed over and under text. This property applies before [TextHeightBehavior.applyHeightToFirstAscent] and [TextHeightBehavior.applyHeightToLastDescent]. {@endtemplate}"/>
<itemvalue="{@template cloud_firestore.collection_reference.doc} Returns a `DocumentReference` with the provided path. If no [path] is provided, an auto-generated ID is used. The unique key generated is prefixed with a client-generated timestamp so that the resulting list will be chronologically-sorted. {@endtemplate}"/>
<itemvalue="Whether the collection contains an element equal to [element]. This operation will check each element in order for being equal to [element], unless it has a more efficient way to find an element equal to [element]. The equality used to determine whether [element] is equal to an element of the iterable defaults to the [Object.==] of the element. Some types of iterable may have a different equality used for its elements. For example, a [Set] may have a custom equality (see [Set.identity]) that its `contains` uses. Likewise the `Iterable` returned by a [Map.keys] call should use the same equality that the `Map` uses for keys."/>
<itemvalue="The value for the given [key], or `null` if [key] is not in the map. Some maps allow `null` as a value. For those maps, a lookup using this operator cannot distinguish between a key not being in the map, and the key being there with a `null` value. Methods like [containsKey] or [putIfAbsent] can be used if the distinction is important."/>
<itemvalue="Whether this map contains the given [key]. Returns true if any of the keys in the map are equal to `key` according to the equality used by the map. ```dart final moonCount = <String, int>{'Mercury': 0, 'Venus': 0, 'Earth': 1, 'Mars': 2, 'Jupiter': 79, 'Saturn': 82, 'Uranus': 27, 'Neptune': 14 }; final containsUranus = moonCount.containsKey('Uranus'); true final containsPluto = moonCount.containsKey('Pluto'); false ```"/>
<itemvalue="Injects an `Instance<S>` in memory. No need to define the generic type `<[S]>` as it's inferred from the [dependency] parameter. - [dependency] The Instance to be injected. - [tag] optionally, use a [tag] as an "id" to create multiple records of the same `Type<S>` the [tag] does not conflict with the same tags used by other dependencies Types. - [permanent] keeps the Instance in memory and persist it, not following `Get.smartManagement` rules. Although, can be removed by `GetInstance.reset()` and `Get.delete()` - [builder] If defined, the [dependency] must be returned from here"/>
<itemvalue="actions"/>
<itemvalue="leading"/>
<itemvalue="condition"/>
<itemvalue="Rebuilds `GetBuilder` each time you call `update()`; Can take a List of [ids], that will only update the matching `GetBuilder( id: )`, [ids] can be reused among `GetBuilders` like group tags. The update will only notify the Widgets, if [condition] is true."/>
<itemvalue="Returns a JSON Web Token (JWT) used to identify the user to a Firebase service. Returns the current token if it has not expired. Otherwise, this will refresh the token and return a new one. If [forceRefresh] is `true`, the token returned will be refreshed regardless of token expiration."/>
<itemvalue="Runtime representation of a type. Type objects represent types. A type object can be created in several ways: By a type literal, a type name occurring as an expression, like `Type type = int;`, or a type variable occurring as an expression, like `Type type = T;`. By reading the run-time type of an object, like `Type type = o.runtimeType;`. Through `dart:mirrors`. A type object is intended as an entry point for using `dart:mirrors`. The only operations supported are comparing to other type objects for equality, and converting it to a string for debugging."/>
<itemvalue="use Null Safety Syntax"/>
<itemvalue="order Directives"/>
<itemvalue="Whether this is a getter or setter."/>
<itemvalue="latest Update Time File"/>
<itemvalue="ListFormat specifies the array format (a single parameter with multiple parameter or multiple parameters with the same name) and the separator for array items."/>
<itemvalue="data not valid: fields count should be 13"/>
<itemvalue="Specifies the [SystemUiMode] to have visible when the application is running. The `overlays` argument is a list of [SystemUiOverlay] enum values denoting the overlays to show when configured with [SystemUiMode.manual]. If a particular mode is unsupported on the platform, enabling or disabling that mode will be ignored. The settings here can be overridden by the platform when System UI becomes necessary for functionality. For example, on Android, when the keyboard becomes visible, it will enable the navigation bar and status bar system UI overlays. When the keyboard is closed, Android will not restore the previous UI visibility settings, and the UI visibility cannot be changed until 1 second after the keyboard is closed to prevent malware locking users from navigation buttons. To regain "fullscreen" after text entry, the UI overlays can be set again after a delay of at least 1 second through [restoreSystemUIOverlays] or calling this again. Otherwise, the original UI overlay settings will be automatically restored only when the application loses and regains focus. Alternatively, a [SystemUiChangeCallback] can be provided to respond to changes in the System UI. This will be called, for example, when in [SystemUiMode.leanBack] and the user taps the screen to bring up the system overlays. The callback provides a boolean to represent if the application is currently in a fullscreen mode or not, so that the application can respond to these changes. When `systemOverlaysAreVisible` is true, the application is not fullscreen. See [SystemChrome.setSystemUIChangeCallback] to respond to these changes in a fullscreen application."/>
<itemvalue="Fullscreen display with status and navigation bars presentable by tapping anywhere on the display. Available starting at SDK 16 or Android J. Earlier versions of Android will not be affected by this setting. For applications running on iOS, the status bar and home indicator will be hidden for a similar fullscreen experience. Tapping on the screen displays overlays, this gesture is not received by the application. See also: [SystemUiChangeCallback], used to listen and respond to the change in system overlays."/>