class ActionType { int? id; String? name; String? description; ActionType({this.id, this.name, this.description}); ActionType.fromJson(Map json) { id = json['id']; name = json['name']; description = json['description']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['name'] = this.name; data['description'] = this.description; return data; } }