from_bot_type property

Object? from_bot_type

Implementation

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

Implementation

set from_bot_type(Object? value) {
  rawData["from_bot_type"] = value;
}