Code: ``` final flutterContact(displayName: 'Test'); print('Before add: ${flutterContact.notes}'); final deviceContact = await FlutterContacts.insertContact(flutterContact); print('After add: ${deviceContact.notes}'); ``` Result: ``` Before add: [] After add: [Note(note=)] ```