Standard constructor

Standard({
  1. String? description,
  2. bool? enabledByDefault,
  3. String? name,
  4. String? standardsArn,
})

Implementation

Standard({
  this.description,
  this.enabledByDefault,
  this.name,
  this.standardsArn,
});