Flutter Elif

  if (1 == 2) {
    print('1');
  } else if (1 == 1) {
    print('2');
  }
  // Result: 2
The Biton