class Formulaic::Inputs::BooleanInput

Public Instance Methods

fill() click to toggle source
# File lib/formulaic/inputs/boolean_input.rb, line 4
def fill
  if value
    check(label.to_str)
  else
    uncheck(label.to_str)
  end
end