value property

bool value
final

The bool value for Switcher.

Example of usage:

bool myValue = true;
Switcher(
  value: myValue, // Your custom value
  // other properties
);

Implementation

final bool value;