10 lines
230 B
Dart
10 lines
230 B
Dart
|
// 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});
|
||
|
}
|