import 'package:werwolf/models/role.dart'; class Player { String name; Role role; Player({required this.name, required this.role}); }