PublishEnvConfig constructor

PublishEnvConfig({
  1. required String name,
  2. required String target,
  3. String? path,
  4. String? bucket,
  5. String prefix = '',
  6. String format = 'icu-json',
  7. List<String> namespaces = const [],
  8. String? manifestUrl,
  9. String? output,
})

Implementation

PublishEnvConfig({
  required this.name,
  required this.target,
  this.path,
  this.bucket,
  this.prefix = '',
  this.format = 'icu-json',
  this.namespaces = const [],
  this.manifestUrl,
  this.output,
});