ApplicationPlayerId.fromJson constructor

ApplicationPlayerId.fromJson(
  1. Map json_
)

Implementation

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