listObject property

List? listObject

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;