ExportServerEngineAttributeResponse.fromJson constructor

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

Implementation

factory ExportServerEngineAttributeResponse.fromJson(
    Map<String, dynamic> json) {
  return ExportServerEngineAttributeResponse(
    engineAttribute: json['EngineAttribute'] != null
        ? EngineAttribute.fromJson(
            json['EngineAttribute'] as Map<String, dynamic>)
        : null,
    serverName: json['ServerName'] as String?,
  );
}