ColorDescriptor constructor
- {int? value,
- Color? color,
- String? description,
- String? name}
Implementation
ColorDescriptor({int? value, Color? color, this.description, this.name})
: color = value != null ? Color(value) : color!;
ColorDescriptor({int? value, Color? color, this.description, this.name})
: color = value != null ? Color(value) : color!;