toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final name = this.name;
  final values = this.values;
  return {
    'Name': name.toValue(),
    'Values': values,
  };
}