getMessageStatusCall static method

String getMessageStatusCall({
  1. String? status,
})

Implementation

static String getMessageStatusCall({String? status}) {
  switch (status) {
    case "actionCallIncoming":
      return "Cuộc gọi đến";
    case "actionCallStart":
      return "Đang nghe máy";
    case "actionCallAccept":
      return "Nhận cuộc gọi";
    case "actionCallDecline":
      return "Từ chối nghe";
    case "actionCallEnd":
      return "Kết thúc cuộc gọi";
    case "actionCallTimeout":
      return "Cuộc gọi nhỡ";
    case "actionCallFailed":
      return "Lỗi cuộc gọi từ hệ thống";
    case "actionCallError":
      return "Lỗi kết nối";
    default:
      return "Kết thúc cuộc gọi";
  }
}