Structured constructor

const Structured({
  1. required String category,
  2. required String action,
  3. String? label,
  4. String? property,
  5. double? value,
})

Implementation

const Structured(
    {required this.category,
    required this.action,
    this.label,
    this.property,
    this.value});