findByBranchIds abstract method

  1. @Query.new('SELECT * FROM Store WHERE branch_id IN (:branchIds)')
Future<List<StoreModel>> findByBranchIds(
  1. List<int> branchIds
)

Implementation

@Query('SELECT * FROM Store WHERE branch_id IN (:branchIds)')
Future<List<StoreModel>> findByBranchIds(List<int> branchIds);