class Fields { List? multipleValue; String? tableValue; String? title; String? type; String? value; Fields({this.multipleValue, this.tableValue, this.title, this.type, this.value}); Fields.fromJson(Map json) { multipleValue = json['MultipleValue'] != null ? json['MultipleValue'].cast() : null; tableValue = json['TableValue']; title = json['Title']; type = json['Type']; value = json['Value']; } Map toJson() { final Map data = new Map(); data['MultipleValue'] = this.multipleValue; data['TableValue'] = this.tableValue; data['Title'] = this.title; data['Type'] = this.type; data['Value'] = this.value; return data; } }