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;
  }
}
void special_type=(String? value)

Implementation

set special_type(String? value) {
  rawData["@type"] = value;
}