dart_meta_types
dart_meta_types copied to clipboard
what if i wanted just an array
@MetaJson()
@DataClass()
abstract class $CalendarResult {
List<$CalendarItem> get items;
}
here is what happens
{
"items: [{a: a},{b: b}]
}
but what if i wanted to do
[{a: a}, {b: b}]
how would I go about doing that? is it possible?