toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final id = this.id;
  final idType = this.idType;
  final relationshipType = this.relationshipType;
  return {
    'id': ?id,
    'idType': ?idType,
    'relationshipType': ?relationshipType,
  };
}