listSyncStatusByType abstract method

  1. @Query('SELECT * FROM SyncStatus WHERE accountId = :accountId AND type = :type')
Future<List<SyncStatus>> listSyncStatusByType(
  1. String accountId,
  2. String type
)

Implementation

@Query(
    'SELECT * FROM SyncStatus WHERE accountId = :accountId AND type = :type')
Future<List<SyncStatus>> listSyncStatusByType(String accountId, String type);