ChangeMessage.fromJson constructor
Create a change message from a JSON map
Implementation
factory ChangeMessage.fromJson(Map<String, dynamic> json) {
return ChangeMessage(
change: Change.fromJson(json['change'] as Map<String, dynamic>),
documentId: json['documentId'] as String,
);
}