SteamConst.fromJson constructor
Creates a SteamConst from json
Implementation
SteamConst.fromJson(Map<String, dynamic> json) {
name = json["constname"];
type = json["consttype"];
value = json["constval"];
}
Creates a SteamConst from json
SteamConst.fromJson(Map<String, dynamic> json) {
name = json["constname"];
type = json["consttype"];
value = json["constval"];
}