listObject property Null safety
Returns a List or null
if rawValue is not a List
Leaves list items untouched
Implementation
List? get listObject => (_rawValue is List) ? _rawValue as List : null;
Returns a List or null
if rawValue is not a List
Leaves list items untouched
List? get listObject => (_rawValue is List) ? _rawValue as List : null;