Presence.fromJson constructor

Presence.fromJson(
  1. Map<String, Object?> json
)

Implementation

Presence.fromJson(Map<String, Object?> json)
    : presence =
          PresenceContent.fromJson(json['content'] as Map<String, Object?>),
      super.fromJson(json);