ApplicationPlayerId.fromJson constructor

ApplicationPlayerId.fromJson(
  1. Map json_
)

Implementation

ApplicationPlayerId.fromJson(core.Map json_)
    : this(
        applicationId: json_['applicationId'] as core.String?,
        playerId: json_['playerId'] as core.String?,
      );