rootAddressIsNotNull method

QueryBuilder<WalletMetadataEntity, WalletMetadataEntity, QAfterFilterCondition> rootAddressIsNotNull()

Implementation

QueryBuilder<WalletMetadataEntity, WalletMetadataEntity,
    QAfterFilterCondition> rootAddressIsNotNull() {
  return QueryBuilder.apply(this, (query) {
    return query.addFilterCondition(const FilterCondition.isNotNull(
      property: r'rootAddress',
    ));
  });
}