State constructor

State({
  1. String? code,
  2. String? description,
  3. String? updateTime,
})

Implementation

State({
  this.code,
  this.description,
  this.updateTime,
});