clientsCreate abstract method

  1. @Post(path: '/clients')
Future<Response<Client>> clientsCreate({
  1. @Body() @required Client? data,
})

@param data

Implementation

@Post(path: '/clients')
Future<chopper.Response<Client>> clientsCreate(
    {@Body() @required Client? data});