type property

dynamic type
final

Returns the type of the attribute, for example:

String                  ->  returns String
List<String>            ->  returns [List, [String]]
Map<String, int>        ->  returns [Map, [String, int]]
Map<String, List<int>>  ->  returns [Map, [List, [int]]]

Implementation

final /*Type | List<Type, Type | List<Type> | List<Type, ...>>*/ type;