fromTuples static method
- List tuples
override
Creates a new ConfigParams object filled with provided key-value pairs called tuples. Tuples parameters contain a sequence of key1, value1, key2, value2, ... pairs.
tuples
the tuples to fill a new ConfigParams object. Returns a new ConfigParams object.
Implementation
static AzureFunctionConnectionParams fromTuples(List tuples) {
final config = ConfigParams.fromTuples(tuples);
return AzureFunctionConnectionParams(config);
}