toJson method

Map<String, Object?> toJson()

Implementation

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

  final json = <String, Object?>{};
  if (description != null) {
    json[r'description'] = description;
  }
  if (name != null) {
    json[r'name'] = name;
  }
  return json;
}