post abstract method

Future<T?> post(
  1. T? obj
)

Asynchronously posts an obj of type T to the API endpoint using POST.

Returns the (updated) obj.

Implementation

Future<T?> post(T? obj);