toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (comment != null) 'comment': comment!,
      if (source != null) 'source': source!,
      if (target != null) 'target': target!,
      if (type != null) 'type': type!,
    };