valueToName static method

String valueToName(
  1. int value
)

Implementation

static String valueToName(int value) {
  switch (value) {
    case 0:
      return 'Post';
    case 1:
      return 'React';
    case 2:
      return 'Comment';
  }
  return '';
}