BigInt? parseUserNumber(String s) { try { return BigInt.tryParse(s, radix: 10); } catch (e) { return null; } }