ApiHelperPathItem.post constructor

ApiHelperPathItem.post(
  1. String key,
  2. String path
)

Implementation

ApiHelperPathItem.post(this.key, this.path)
    : assert(key != null && key.isNotEmpty),
      assert(path != null && path.isNotEmpty),
      _type = ApiHelperRequestType.post,
      _query = {};