updateDepot abstract method

  1. @PUT('/depots/{id}')
Future<void> updateDepot(
  1. @Path('id') int depotId,
  2. @Body() Map<String, dynamic> data
)

Implementation

@PUT('/depots/{id}')
Future<void> updateDepot(
    @Path('id') int depotId, @Body() Map<String, dynamic> data);