menu
code_id_flutter package
documentation
code_utils/extensions/boolean_extension.dart
BooleanExtensions
not method
not method
dark_mode
light_mode
not
method
bool
?
not
(
)
Returns the inverse of this boolean.
Implementation
bool? not() { if (this == null) return null; return !this!; }
code_id_flutter package
documentation
code_utils/extensions/boolean_extension
BooleanExtensions
not method
BooleanExtensions extension on
bool
?