updateHasGetMessage method

Future updateHasGetMessage()

Implementation

Future updateHasGetMessage() async {
  Map<String, Object?> params = {
    'uid': Common.uid,
    'hasGetMessage': true,
  };
  await SQLService.execute(
    'sp_setHasMapData',
    params: params,
  );
}