ItemOptions.fromJsonMap constructor

ItemOptions.fromJsonMap(
  1. Map json
)

Implementation

ItemOptions.fromJsonMap(Map json) {
    id = json["id"];
    description = json["description"];
    type = json["type"];
    optional = json["optional"];
    min = json["min"];
    max = json["max"];
    options = json["options"];
    itemId = json["item_id"];
}