silent property
bool?
get
silent
Indicates that no sounds or vibrations should be made when the notification is being shown. This defaults to false.
Implementation
bool? get silent => _wrapped.silent;
set
silent
(bool? v)
Implementation
set silent(bool? v) {
_wrapped.silent = v;
}