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