Question
Cast/convert dictionary to array of variants
{
'a': true,
'b': true,
'c': false,
'd': false
}
The code above should dynamically be converted to
{
{ 'a': true },
{ 'b': true },
{ 'c': false },
{ 'd': false }
}
is that possible? Thanks in advance
