State constructor

State({
  1. String? code,
  2. String? name,
})

Implementation

State({
  this.code,
  this.name,
});