Attribute constructor

Attribute({
  1. required String? fieldName,
  2. required String? fieldValue,
  3. required String? colorCode,
})

Implementation

Attribute({
  required this.fieldName,
  required this.fieldValue,
  required this.colorCode,
});