redeemInviteCode method

void redeemInviteCode(
  1. String code
)

Redeem an invitation code. Only before registering, which is the point of it.

Implementation

void redeemInviteCode(String code) {
  _alive();
  command({'type': 'redeem_invite_code', 'code': code});
}