ServerStart.fromJson constructor
Implementation
factory ServerStart.fromJson(Map<String, dynamic> json) => ServerStart(
hostServerSessionId: (json['HostServerSessionId'] as String?) ?? '',
configJsonContent: (json['ConfigJsonContent'] as String?) ?? '',
);