ValueChangedCallback typedef

ValueChangedCallback = void Function(num value)

A typedef can be used to specify a function signature that we want specific functions to match. A function signature is defined by a function’s parameters (including their types). The return type is not a part of the function signature.

Implementation

typedef ValueChangedCallback = void Function(num value);