import 'dart:ui'; class Category { String label; String color; Category({ this.label = '', this.color = '', }); factory Category.fromJson(Map json) { return Category( label: json['label'], color: json['color'] ); } Map toJson() => { 'label': label, 'color': color, }; Color rgbToColor() { return Color(int.parse(color.toUpperCase().replaceAll("#", ""), radix: 16)); } }