update method
update({'fieldName': Value}) fieldName must be String. Value is dynamic, it can be any of the (int, bool, String.. )
Implementation
Future<BoolResult> update(Map<String, dynamic> values) {
final msg = 'update method can be implemented in tables not view objects';
throw UnimplementedError(msg);
}