addressesJsonIsNotEmpty method

QueryBuilder<WalletMetadataEntity, WalletMetadataEntity, QAfterFilterCondition> addressesJsonIsNotEmpty()

Implementation

QueryBuilder<WalletMetadataEntity, WalletMetadataEntity,
    QAfterFilterCondition> addressesJsonIsNotEmpty() {
  return QueryBuilder.apply(this, (query) {
    return query.addFilterCondition(FilterCondition.greaterThan(
      property: r'addressesJson',
      value: '',
    ));
  });
}