getRegionAlpha3 method

String? getRegionAlpha3()

Return the region of this locale as an ISO-3166-alpha3 region code.

Implementation

String? getRegionAlpha3() {
  return region != null ? regionAlpha2ToAlpha3(region) : null;
}