class IdRequest { String id; IdRequest({this.id = ""}); Map toJson() { final Map data = {}; data['id'] = id; return data; } }