fromJson static method

PushMessageContentInviteVideoChatParticipants? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static PushMessageContentInviteVideoChatParticipants? fromJson(
  Map<String, dynamic>? json,
) {
  if (json == null) {
    return null;
  }

  return PushMessageContentInviteVideoChatParticipants(
    isCurrentUser: (json['is_current_user'] as bool?) ?? false,
  );
}