update method

Future<bool> update()

Implementation

Future<bool> update() async {
  var exception = await Database.update(tableName, _dbKey, _toMap());
  return (exception == null);
}