OnUserJoined.fromJson constructor

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

Implementation

factory OnUserJoined.fromJson(Map<String, dynamic> json) => OnUserJoined(
    clientContext: Context.fromJson((json['ClientContext'] ?? {}) as Map<String, dynamic>),
);