whereExists method
Implementation
String whereExists(String filed, String operators, dynamic value) {
var op = operators == '' ? '' : "'$operators'" ',';
return '${tableName[0].replaceAll('_', '').toUpperCase()}${tableName.substring(1).replaceAll('_', '')}'
'::where($filed,$op$value)->exists()';
}