japaneseOnNameOnRomany property
String
get
japaneseOnNameOnRomany
Get name of this branch in Japanese(Onyomi) by Latin letters.
Implementation
String get japaneseOnNameOnRomany {
return switch (this) {
Branch.rat => "shi",
Branch.ox => "chū",
Branch.tiger => "in",
Branch.rabbit => "bō",
Branch.dragon => "shin",
Branch.snake => "shi",
Branch.horse => "go",
Branch.goat => "bi",
Branch.monkey => "shin",
Branch.rooster => "yū",
Branch.dog => "jutsu",
Branch.pig => "gai",
};
}