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