ValidateMatchmakingRuleSetOutput.fromJson constructor

ValidateMatchmakingRuleSetOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ValidateMatchmakingRuleSetOutput.fromJson(Map<String, dynamic> json) {
  return ValidateMatchmakingRuleSetOutput(
    valid: json['Valid'] as bool?,
  );
}