bodyFormat function
Implementation
Map<String, dynamic> bodyFormat(String tableName,
{String command = "GetData", String selectQuery = "", String where = ""}) {
return {
"UserId": 0,
"TableName": tableName,
"Command": command,
"TotalRecord": 100,
"PageNo": 1,
"PageSize": 25,
"UserGuid": 0,
"ApiPacket": {
"Packet": {
"ModelName": tableName,
"Select": selectQuery,
"Where": where,
"OrderBy": "",
"IncludeChild": false
},
"PacketList": null
}
};
}