OnHostedServerExit.fromJson constructor

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

Implementation

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