SteamParam.fromJson constructor

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

Creates a SteamParam from json

Implementation

SteamParam.fromJson(Map<String, dynamic> json) {
  name = json["paramname"];
  type = json["paramtype"];
  typeFlat = json["paramtype_flat"] ?? "";
  // outStruct = json["out_struct"] ?? "";
  // outArrayCall = json["out_array_call"] ?? "";
  // arrayCount = json["array_count"] ?? "";
  // outStringCount = json["out_string_count"] ?? "";
  // outString = json["out_string"] ?? "";
  // desc = json["desc"] ?? "";
  // outArrayCount = json["out_array_count"] ?? "";
  // outBufferCount = json["out_buffer_count"] ?? "";
  // bufferCount = json["buffer_count"] ?? "";
}