now loading...

import 'dart:math' as math;

void main() {
  int a = 1;
  int b = 2;
  print(math.min(a, b)); // 1
}