SenderPredicate.of constructor

SenderPredicate.of(
  1. SenderPredicate other
)

Implementation

SenderPredicate.of(SenderPredicate other)
  : id = (other.id != null ? FieldPredicate.of(other.id!) : null),
    custom = (other.custom != null ? Map.of(other.custom!) : null),
    locale = (other.locale != null ? FieldPredicate.of(other.locale!) : null),
    role = (other.role != null ? FieldPredicate.of(other.role!) : null);