dataType property

String dataType

Implementation

String get dataType => _getAttribute<String>(kDataType, '');
void dataType=(String? x)

pass null to remove key from attributes

Implementation

set dataType(String? x) =>
    (x == null) ? _attributes.remove(kDataType) : _attributes[kDataType] = x;