ModifyCli constructor

ModifyCli(
  1. String route,
  2. RequestType requestType,
  3. dynamic body,
  4. Map<String, dynamic>? params,
)

Implementation

ModifyCli(
  this.route,
  RequestType requestType,
  this.body,
  this.params
) : super(requestType, waitUntilGetServerConnection: false){
  assert(this.requestType == RequestType.CREATE || this.requestType == RequestType.UPDATE || this.requestType == RequestType.DELETE);
}