toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final type = this.type;
  final value = this.value;
  return {
    if (type != null) 'type': type.toValue(),
    if (value != null) 'value': value,
  };
}