common_text_boolean method

String common_text_boolean(
  1. Object bool
)

{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],
  );
}