Config constructor

Config({
  1. String? kmsKeyName,
  2. String? name,
  3. String? updateTime,
})

Implementation

Config({
  this.kmsKeyName,
  this.name,
  this.updateTime,
});