SenderPredicate.of constructor

SenderPredicate.of(
  1. SenderPredicate other
)

Implementation

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