toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'host'] = this.host;
  json[r'value'] = this.value;
  json[r'required'] = this.required_;
  return json;
}