koreanNameOnRomany property
String
get
koreanNameOnRomany
Get name of this branch in Korean by Latin letters.
Implementation
String get koreanNameOnRomany {
return switch (this) {
Branch.rat => "ja",
Branch.ox => "chuk",
Branch.tiger => "in",
Branch.rabbit => "myo",
Branch.dragon => "jin",
Branch.snake => "sa",
Branch.horse => "o",
Branch.goat => "mi",
Branch.monkey => "sin",
Branch.rooster => "yu",
Branch.dog => "sul",
Branch.pig => "hae",
};
}