ConversationPredicate.of constructor

ConversationPredicate.of(
  1. ConversationPredicate other
)

Implementation

ConversationPredicate.of(ConversationPredicate other)
    : access = (other.access != null
          ? FieldPredicate<ConversationAccessLevel>.of(other.access!)
          : null),
      custom = (other.custom != null
          ? Map<String, CustomFieldPredicate>.of(other.custom!)
          : null),
      hasUnreadMessages = other.hasUnreadMessages,
      lastMessageTs = (other.lastMessageTs != null
          ? NumberPredicate.of(other.lastMessageTs!)
          : null),
      subject = (other.subject != null
          ? FieldPredicate<String?>.of(other.subject!)
          : null);