AddressBook constructor

AddressBook(
  1. AddressRecord? home,
  2. AddressRecord? work,
  3. List<AddressRecord> favorites,
  4. List<AddressCollection> customCollections,
)

Implementation

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