ApplicationVerifyResponse.fromJson constructor

ApplicationVerifyResponse.fromJson(
  1. Map json_
)

Implementation

ApplicationVerifyResponse.fromJson(core.Map json_)
  : this(
      alternatePlayerId: json_['alternate_player_id'] as core.String?,
      kind: json_['kind'] as core.String?,
      playerId: json_['player_id'] as core.String?,
    );