subtype property

String? subtype

Implementation

String? get subtype {
  if (attributes[BuiltInAttributeKey.subtype] is String) {
    return attributes[BuiltInAttributeKey.subtype] as String;
  }
  return null;
}