class Ethon::Easy::Form

def initialize(easy, params, multipart = nil)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (Ethon::Easy easy, String params, ?nil multipart) -> void

This signature was generated using 33 samples from 2 applications.

Returns:
  • (Form) - A new Form.

Parameters:
  • params (Hash) -- The parameter with which to initialize the form.

Other tags:
    Example: Return a new Form. -
def initialize(easy, params, multipart = nil)
  @easy = easy
  @params = params || {}
  @multipart = multipart
end