updateItem<Type extends DirectusData> method
Future<Type>
updateItem<
Type extends DirectusData>({ - required Type objectToUpdate,
- String? fields,
- bool force = false,
})
override
Implementation
@override
Future<Type> updateItem<Type extends DirectusData>(
{required Type objectToUpdate, String? fields, bool force = false}) {
addCalledFunction(named: "updateItem");
addReceivedObject(objectToUpdate, name: "objectToUpdate");
addReceivedObject(fields, name: "fields");
return Future.value(popNextReturnedObject());
}