이제, class 객체를 일부 변수만 가져와서 intialize하는 방법을 알아보자.다음의 두 constructor들을 만들 것이다.xp = 0인 blue팀 player 생성 -> createBluePlayerxp = 0인 red팀 player 생성 -> createRedPlayerclass Player { final String name; // 아래처럼 한번에 선언할 수도 있다. int xp, age; String team; // 변수 순서 안중요함. Player( {required this.name, required this.xp, required this.team, required this.age}); // ':' 뒤 -> class initializ..