common_text_boolean method
{bool, select, true{True} false{False} other{Unknown}}
Implementation
String common_text_boolean(Object bool) {
return Intl.select(
bool,
{
'true': 'True',
'false': 'False',
'other': 'Unknown',
},
name: 'common_text_boolean',
desc: '',
args: [bool],
);
}