update method

Future<BoolResult> update(
  1. Map<String, dynamic> values
)

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);
}