toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final category = this.category;
  final value = this.value;
  final variable = this.variable;
  return {'category': ?category, 'value': ?value, 'variable': ?variable};
}