getTotalUnreadMsgCount method

Future getTotalUnreadMsgCount({
  1. String? operationID,
})

get total unread message count int.tryParse(count) ?? 0;

Implementation

Future<dynamic> getTotalUnreadMsgCount({
  String? operationID,
}) =>
    _channel.invokeMethod(
        'getTotalUnreadMsgCount',
        _buildParam({
          "operationID": Utils.checkOperationID(operationID),
        }));