special_type property

String? special_type

Implementation

String? get special_type {
  try {
    if (rawData["@type"] is String == false) {
      return null;
    }
    return rawData["@type"] as String;
  } catch (e) {
    return null;
  }
}