toJson method

Map<String, Object?> toJson()

Implementation

Map<String, Object?> toJson() {
  var title = this.title;
  var displayUrl = this.displayUrl;

  final json = <String, Object?>{};
  json[r'title'] = title;
  json[r'displayUrl'] = displayUrl;
  return json;
}