first commit

This commit is contained in:
Sas Andy
2025-02-04 19:39:14 +07:00
commit 541d84755c
179 changed files with 9390 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:queuedisplay/model/error_msg_model.dart';
import 'package:queuedisplay/model/layanan_dokter.dart';
import '../model/service_model.dart';
final allServiceProvider = StateProvider<List<Layanan>>(
(ref) => List.empty(),
);
final allServiceDoctorProvider = StateProvider<List<LayananDokter>>(
(ref) => List.empty(),
);
final errorListMsgProvider = StateProvider<List<ErrorMsgModel>>(
(ref) => List.empty(growable: true),
);