Class: InCallConstraint

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

Overview

Category: Phone

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 = {}) ⇒ InCallConstraint

Returns a new instance of InCallConstraint.



3789
3790
3791
3792
3793
3794
3795
3796
3797
# File 'lib/ruby-macrodroid.rb', line 3789

def initialize(h={})

  options = {
    in_call: true
  }

  super(options.merge h)

end