getSiGunGuCodes function

List<AreaCode> getSiGunGuCodes({
  1. String languageCode = 'ko',
  2. required String siDo,
})

Returns a list of AreaCode for the Si/Gun/Gu area code from the siDo code.

Implementation

List<AreaCode> getSiGunGuCodes({
  String languageCode = 'ko',
  required String siDo,
}) =>
    siGunGuCodes[languageCode]![siDo]!;