where property

String where
final

Example/Explanations

{
  'name': 'farm',
  'description': 'a beautiful farm with cows'
},
{
  'name': 'far west',
  'description': 'somewhere far away, in the west'
},
{
  'name': 'nightclub',
  'description': 'the coolest nightclub in France'
}

The user input might be far... in order to find a farm or the far west, it seems the user is not looking for a nightclub... SherlockCompletion might be used in the 'name' column as following:

SherlockCompletion(where: 'name', elements: /* ... */);

Implementation

final String where;