AddressBook constructor
AddressBook(
- AddressRecord? home,
- AddressRecord? work,
- List<
AddressRecord> favorites, - List<
AddressCollection> customCollections,
Implementation
factory AddressBook(
AddressRecord? home,
AddressRecord? work,
core.List<AddressRecord> favorites,
core.List<AddressCollection> customCollections) =>
AddressBookImpl(home, work, favorites, customCollections);