toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (category != null) 'category': category!,
  if (value != null) 'value': value!,
  if (variable != null) 'variable': variable!,
};