put method

RestOperation put({
  1. required RestOptions restOptions,
})

Implementation

RestOperation put({required RestOptions restOptions}) {
  return plugins.length == 1
      ? plugins[0].put(restOptions: restOptions)
      : throw _pluginNotAddedException('Api');
}