appQueryParam function

Map<String, String> appQueryParam({
  1. Map<String, String>? customQuery,
})

Implementation

Map<String, String> appQueryParam({Map<String, String>? customQuery}) {
  Map<String, String> appQueryParam;
  final data = {
    'dID': AppInfo.appInfo.deviceId ?? "",
    'dt': AppInfo.appInfo.deviceType ?? "",
    'vn': AppInfo.appInfo.buid ?? "",
    'bvn': AppInfo.appInfo.deviceVersion ?? "",
    /*'cid':"223"*/
  };
  appQueryParam = {...data, ...?customQuery};
  return appQueryParam;
}