Printer Local data and remove unused

This commit is contained in:
efrilm
2025-09-20 03:56:07 +07:00
parent 04811015b6
commit 44402140fb
46 changed files with 685 additions and 7150 deletions
@@ -1,7 +1,6 @@
import 'dart:async';
import 'package:bloc/bloc.dart';
import 'package:enaklo_pos/data/datasources/product_local_datasource.dart';
import 'package:enaklo_pos/data/models/response/table_model.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
@@ -13,9 +12,6 @@ class UpdateTableBloc extends Bloc<UpdateTableEvent, UpdateTableState> {
UpdateTableBloc() : super(_Initial()) {
on<_UpdateTable>((event, emit) async {
emit(_Loading());
await ProductLocalDatasource.instance.updateTable(
event.table,
);
emit(_Success('Update Table Success'));
});
}