ServerStop.fromJson constructor

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

Implementation

factory ServerStop.fromJson(Map<String, dynamic> json) => ServerStop(
    hostServerSessionId: (json['HostServerSessionId'] as String?) ?? '',
    targetServerSessionId: (json['TargetServerSessionId'] as String?) ?? '',
);