Class: InCallConstraint

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

Overview

Category: Phone

Instance Attribute Summary

Attributes inherited from MacroObject

#options, #siguid, #type

Instance Method Summary collapse

Methods inherited from Constraint

#match?

Methods inherited from MacroObject

#to_h, #to_s

Constructor Details

#initialize(h = {}) ⇒ InCallConstraint

Returns a new instance of InCallConstraint.



4863
4864
4865
4866
4867
4868
4869
4870
4871
# File 'lib/ruby-macrodroid.rb', line 4863

def initialize(h={})

  options = {
    in_call: true
  }

  super(options.merge h)

end