parametersOf

Returns an empty Parameters instance

Report a problem


fun parametersOf(name: String, value: String): Parameters

Creates a Parameters instance containing only single pair

Report a problem


fun parametersOf(name: String, values: List<String>): Parameters

Creates a Parameters instance containing only single pair of name with multiple values

Report a problem


Creates a Parameters instance from the entries of the given map

Report a problem


fun parametersOf(vararg pairs: Pair<String, List<String>>): Parameters

Creates a Parameters instance from the specified pairs

Report a problem