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