toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  return {
    "key": this.key,
    "value": this.value,
    "defaultValue": this.defaultValue,
    "metadata": this.metadata().toJson()
  };
}