ReleasePackerCommandGCS constructor

ReleasePackerCommandGCS(
  1. String project,
  2. String bucket, {
  3. required Object credential,
  4. Map<String, Object?>? parameters,
  5. Object? body,
})

Implementation

ReleasePackerCommandGCS(this.project, this.bucket,
    {required this.credential, this.parameters, this.body}) {
  if (project.isEmpty) throw ArgumentError("Empty project!");
  if (bucket.isEmpty) throw ArgumentError("Empty bucket!");
}