fluent-kt
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
fluent-kt
fluent-syntax
/
dev.kbroom.fluent.syntax
/
NamedArgument
Named
Argument
@
Serializable
data
class
NamedArgument
(
val
name
:
Identifier
,
val
value
:
InlineExpression
,
val
type
:
String
=
"NamedArgument"
)
(
source
)
A named argument (key-value pair) in a function call.
Members
Constructors
Named
Argument
Link copied to clipboard
constructor
(
name
:
Identifier
,
value
:
InlineExpression
,
type
:
String
=
"NamedArgument"
)
Properties
name
Link copied to clipboard
val
name
:
Identifier
The argument name
type
Link copied to clipboard
val
type
:
String
value
Link copied to clipboard
val
value
:
InlineExpression
The argument value