showInForeground property
bool
get
showInForeground
Implementation
bool get showInForeground {
switch (this) {
case NotificationMode.backgroundAndForeground:
return true;
case NotificationMode.backgroundOnly:
return false;
case NotificationMode.silentOnly:
return false;
}
}