UpdateServerEngineAttributesResponse.fromJson constructor

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

Implementation

factory UpdateServerEngineAttributesResponse.fromJson(
    Map<String, dynamic> json) {
  return UpdateServerEngineAttributesResponse(
    server: json['Server'] != null
        ? Server.fromJson(json['Server'] as Map<String, dynamic>)
        : null,
  );
}