# File lib/grape_entity/exposure/formatter_exposure.rb, line 19
        def value(entity, _options)
          formatters = entity.class.formatters
          if formatters[@format_with]
            entity.exec_with_attribute(attribute, &formatters[@format_with])
          else
            entity.send(@format_with, entity.delegate_attribute(attribute))
          end
        end