# PlatformType enum PlatformType { android('android', 'Android'), ios('ios', 'iOS'), web('web', 'Web'); const PlatformType(this.code, this.name); final String code; final String name; factory PlatformType.getByCode(String code) { return PlatformType.values.firstWhere((value) => value.code == code, orElse: () => PlatformType.web); } } ## 관련 - [[TitleType]]