AddressNode constructor

AddressNode({
  1. String? name,
  2. String? code,
  3. String? letter,
})

Implementation

AddressNode({
  this.name,
  this.code,
  this.letter,
});