ReleasePackerCommandURL constructor

ReleasePackerCommandURL(
  1. String url, {
  2. Map<String, Object?>? parameters,
  3. Credential? authorization,
  4. Object? body,
})

Implementation

ReleasePackerCommandURL(this.url,
    {this.parameters, this.authorization, this.body}) {
  if (url.isEmpty) {
    throw ArgumentError("Empty URL!");
  }
}