PlayerName.fromJson constructor

PlayerName.fromJson(
  1. Map json_
)

Implementation

PlayerName.fromJson(core.Map json_)
  : this(
      familyName: json_['familyName'] as core.String?,
      givenName: json_['givenName'] as core.String?,
    );