usePoint method

dynamic usePoint(
  1. int point
)

포인트 사용

  • 포인트를 사용 한 다음, 회원 정보에서 포인트를 차감해 주어야 한다.

Implementation

usePoint(int point) {
  pointToUse = point;
  print('usePoint: $pointToUse');
  update();
}