updateHasGetParamter method

Future updateHasGetParamter()

Implementation

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