Class: AutoSyncConstraint

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

Overview

Category: Device State

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #type

Instance Method Summary collapse

Methods inherited from Constraint

#match?

Methods inherited from MacroObject

#to_h

Constructor Details

#initialize(h = {}) ⇒ AutoSyncConstraint

Returns a new instance of AutoSyncConstraint.



3564
3565
3566
3567
3568
3569
3570
3571
3572
# File 'lib/ruby-macrodroid.rb', line 3564

def initialize(h={})

  options = {
    enabled: false
  }

  super(options.merge h)

end