factory Phone.fromJson(Map<String, dynamic> json) { return Phone( phoneNumber: json['phoneNumber'], isOptIn: json['isOptIn'], ); }