OnHostedServerExit.fromJson constructor
Implementation
factory OnHostedServerExit.fromJson(Map<String, dynamic> json) => OnHostedServerExit(
serverSessionId: (json['ServerSessionId'] as String?) ?? '',
wasSuccessful: (json['WasSuccessful'] as bool?) ?? false,
);