LegalEntityCompanyAddressKana constructor

const LegalEntityCompanyAddressKana({
  1. String? city,
  2. String? country,
  3. String? line1,
  4. String? line2,
  5. String? postalCode,
  6. String? state,
  7. String? town,
})

The Kana variation of the company's primary address (Japan only).

Implementation

const LegalEntityCompanyAddressKana({
  this.city,
  this.country,
  this.line1,
  this.line2,
  this.postalCode,
  this.state,
  this.town,
});