DescribeServerResponse.fromJson constructor

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

Implementation

factory DescribeServerResponse.fromJson(Map<String, dynamic> json) {
  return DescribeServerResponse(
    server: DescribedServer.fromJson(json['Server'] as Map<String, dynamic>),
  );
}