/// Spend one of the rationed monthly tokens to wipe an item debt, no questions /// asked. class AmnestyRequest { String commitmentId; AmnestyRequest({this.commitmentId = ""}); Map toJson() { final Map data = {}; data['commitmentId'] = commitmentId; return data; } }