SimpleConversationPredicate.of constructor

SimpleConversationPredicate.of(
  1. SimpleConversationPredicate other
)

Implementation

SimpleConversationPredicate.of(SimpleConversationPredicate other)
  : access = (other.access != null ? FieldPredicate.of(other.access!) : null),
    custom = (other.custom != null ? Map.of(other.custom!) : null),
    hasUnreadMessages = other.hasUnreadMessages,
    lastMessageTs = (other.lastMessageTs != null
        ? NumberPredicate.of(other.lastMessageTs!)
        : null),
    subject = (other.subject != null
        ? FieldPredicate.of(other.subject!)
        : null);