// Create contact lists class Contact { final String name; final String phoneNumber; final bool isFavorite; final bool isLocked; Contact(this.name, this.phoneNumber, {this.isFavorite = false, this.isLocked = false}); }