OdooRpcCall constructor

OdooRpcCall(
  1. int userId,
  2. String baseURL,
  3. String dbName,
  4. String modelName,
  5. int recordId,
  6. String method,
  7. dynamic args,
  8. Map kwargs, [
  9. DateTime? callDate,
])

Implementation

OdooRpcCall(this.userId, this.baseURL, this.dbName, this.modelName,
    this.recordId, this.method, this.args, this.kwargs,
    [DateTime? callDate])
    : callDate = callDate ?? DateTime.now();