Script constructor

Script({
  1. DateTime? creationTime,
  2. String? name,
  3. String? scriptArn,
  4. String? scriptId,
  5. int? sizeOnDisk,
  6. S3Location? storageLocation,
  7. String? version,
})

Implementation

Script({
  this.creationTime,
  this.name,
  this.scriptArn,
  this.scriptId,
  this.sizeOnDisk,
  this.storageLocation,
  this.version,
});