class MyColor { String blue; String red; MyColor({this.blue, this.red}); factory MyColor.fromJson(Map json) { return MyColor( blue: json['blue'], red: json['red'], ); } Map toJson() { final Map data = new Map(); data['blue'] = this.blue; data['red'] = this.red; return data; } }