delete abstract method

Future delete(
  1. dynamic body
)

Deletes an item from the data source.

  • body: The data used to identify the item to delete (usually an id). Example: delete({'id': 42})

Returns a Future with the result of the deletion.

Implementation

Future<dynamic> delete(dynamic body);