edit abstract method

Future edit(
  1. dynamic body
)

Updates an existing item.

  • body: The updated payload. Typically must include an id or unique identifier. Example: edit({'id': 42, 'name': 'Updated Name'})

Returns a Future with the result of the update.

Implementation

Future<dynamic> edit(dynamic body);