You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bowl_in/Sources/bowlin_project/lib/model/Player.dart

24 lines
295 B

class Player {
String _name;
String _image;
// Constructor
Player(this._name, this._image);
// Getters and setters
String get name => _name;
set name(String value) {
_name = value;
}
String get image => _image;
set image(String value) {
_image = value;
}
}