弹出电话页面

This commit is contained in:
GYJ
2024-11-27 18:18:08 +08:00
parent 938a5df35f
commit 1da1683adc
14 changed files with 252 additions and 16 deletions

View File

@@ -1,6 +1,7 @@
import 'dart:async';
import 'package:cashier_reserve/common/channel/call_log_model.dart';
import 'package:cashier_reserve/common/channel/model/call_log_model.dart';
import 'package:cashier_reserve/common/channel/model/call_status_change_model.dart';
import 'package:event_bus/event_bus.dart';
@@ -51,4 +52,10 @@ class GetCallLogEvent extends MyEvent {
bool isSuccess = false;
GetCallLogEvent({this.callLogs = const [], this.isLoadMore = false, this.isSuccess = false});
}
class CallStatusChangeEvent extends MyEvent {
CallStatusChangeModel model;
CallStatusChangeEvent({required this.model});
}