menu
bottom_bar_matu package
documentation
utils/app_utils.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!; }
bottom_bar_matu package
documentation
utils/app_utils
BooleanExtensions
not method
BooleanExtensions extension on
bool
?