showNotification property

bool get showNotification

Implementation

bool get showNotification => _showNotification;
set showNotification (bool newValue)

Implementation

set showNotification(bool newValue) {
  _showNotification = newValue;

  /* await */
  _sendChannel.invokeMethod(
      'showNotification', {'id': id, 'show': _showNotification});
}