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.
28 lines
395 B
28 lines
395 B
import 'package:uuid/uuid.dart';
|
|
import 'package:uuid/uuid_util.dart';
|
|
import 'Achievement.dart';
|
|
|
|
class Player {
|
|
|
|
final Uuid _id;
|
|
String _image;
|
|
String _name;
|
|
|
|
User(this._id, this._image, this._name);
|
|
|
|
get id => _id;
|
|
|
|
String get name => _name;
|
|
|
|
set name(String value) {
|
|
_name = value;
|
|
}
|
|
|
|
String get image => _image;
|
|
|
|
set image(String value) {
|
|
_image = value;
|
|
}
|
|
|
|
}
|