ServerStart.fromJson constructor

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

Implementation

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