toEJson method

dynamic toEJson()

Implementation

EJsonValue toEJson() {
  return <String, dynamic>{
    '_id': id.toEJson(),
    'uid': uid.toEJson(),
    'collection': collection.toEJson(),
    'entityId': entityId.toEJson(),
    'diffJson': diffJson.toEJson(),
    'newJson': newJson.toEJson(),
    'operation': operation.toEJson(),
    'createdAt': createdAt.toEJson(),
  };
}