AwarenessQueryMessage.fromJson constructor

AwarenessQueryMessage.fromJson(
  1. Map<String, dynamic> json
)

from json

Implementation

factory AwarenessQueryMessage.fromJson(Map<String, dynamic> json) =>
    AwarenessQueryMessage(
      documentId: json['documentId'] as String,
    );