blob: 70fd4b6dcee7834ff9ccf6fe31decda2fb47be94 [file] [log] [blame]
>>>
String type = status == 'OK'
? 'notices'
: status == 'NO' ? 'warnings' : status == 'BAD' ? 'errors' : '';
<<<
String type = status == 'OK'
? 'notices'
: status == 'NO'
? 'warnings'
: status == 'BAD'
? 'errors'
: '';
<<< 3.7
String type =
status == 'OK'
? 'notices'
: status == 'NO'
? 'warnings'
: status == 'BAD'
? 'errors'
: '';