class Order { String? title; String? value; Order({this.title, this.value}); factory Order.fromJson(Map json) => Order( title: json['title'] as String?, value: json['value'] as String?, ); }