type property

String? type

Implementation

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

Implementation

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