update position table, set selected table

This commit is contained in:
efrilm
2025-10-26 18:06:09 +07:00
parent 655902a659
commit 634b331716
15 changed files with 1195 additions and 61 deletions
@@ -5,4 +5,9 @@ abstract class ITableRepository {
int page = 1,
int limit = 50,
});
Future<Either<TableFailure, Table>> updatePosition({
required String id,
required Offset position,
});
}