Class: SilentModeTrigger

Inherits:
Trigger show all
Defined in:
lib/ruby-macrodroid.rb

Instance Method Summary collapse

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ SilentModeTrigger

Returns a new instance of SilentModeTrigger.



1126
1127
1128
1129
1130
1131
1132
1133
1134
# File 'lib/ruby-macrodroid.rb', line 1126

def initialize(h={})

  options = {
    silent_enabled: true
  }

  super(options.merge h)

end