FunctionConfig constructor
FunctionConfig({
- String? host,
- int? port,
- FunctionConfig_Type? type,
Implementation
factory FunctionConfig({
$core.String? host,
$core.int? port,
FunctionConfig_Type? type,
}) {
final _result = create();
if (host != null) {
_result.host = host;
}
if (port != null) {
_result.port = port;
}
if (type != null) {
_result.type = type;
}
return _result;
}