ApiMethod constructor

ApiMethod({
  1. Map<String, dynamic>? params,
  2. Map<String, dynamic>? body,
  3. Map<String, dynamic>? query,
  4. String? response,
  5. bool responseIsList = false,
})

Implementation

ApiMethod({
  this.params,
  this.body,
  this.query,
  this.response,
  this.responseIsList = false,
});