static String? intLTEZero( int? value, { String msg = 'O valor deve ser igual ou menor que zero.', }) => (value ?? 1) <= 0 ? null : msg;