mrgnhnt96/json_fields

Access sub fields

mrgnhnt96 opened this issue · 0 comments

Think of a way to access this

class Person {
   final Purchase purchase;
...
}

class Purchase {
   final Sting product;
...
}

How could we access Person.purchase.product?