i have argument with type List<Dictionary(string, object)>, how to default value with the real value, example i have data like this
[
{
"encoder": "Encoder1",
"data": {
"rtmps": [
"rtmp://a.rtmp.youtube.com",
"rtmp://a.rtmp.youtube.com",
"rtmp://a.rtmp.youtube.com"
]
}
},
{
"encoder": "Encoder2",
"data": {
"rtmps": [
"rtmp://a.rtmp.youtube.com",
"rtmp://a.rtmp.youtube.com"
]
}
},
{
"encoder": "Encoder3",
"data": {
"rtmps": [
"rtmp://a.rtmp.youtube.com"
]
}
}
]
how to set that value in default value that has type List<Dictionary(string, object)>