<itemvalue="Extracts the magnitude of the [k]th frequency from [data]."/>
<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."/>
@ -56,12 +57,11 @@
<itemvalue="A router that routes all pointer events received from the engine."/>
<itemvalue="Retrieve the entries of the process environment. The result is an [Iterable] of strings, where each string represents an environment entry. Environment entries should be strings containing a non-empty name and a value separated by a '=' character. The name does not contain a '=' character, so the name is everything up to the first '=' character. Values are everything after the first '=' character. A value may contain further '=' characters, and it may be empty. Returns an [OSError] if retrieving the environment fails."/>
<itemvalue="Creates a new repeating timer. The [callback] is invoked repeatedly with [duration] intervals until canceled with the [cancel] function. The exact timing depends on the underlying timer implementation. No more than `n` callbacks will be made in `duration n` time, but the time between two consecutive callbacks can be shorter and longer than `duration`. In particular, an implementation may schedule the next callback, e.g., a `duration` after either when the previous callback ended, when the previous callback started, or when the previous callback was scheduled for - even if the actual callback was delayed."/>
<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". ```"/>