update method

Future<bool> update(
  1. String tableName,
  2. int id,
  3. Map<String, dynamic> args
)
override

Implementation

Future<bool> update(
    String tableName, int id, Map<String, dynamic> args) async {
  bool resp = await _crud(tableName, _OdooMethod.update, [
    [id],
    args
  ]);

  return resp;
}