update_connection_state property

UpdateConnectionState get update_connection_state

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

UpdateConnectionState get update_connection_state {
  try {
    if (rawData["update_connection_state"] is Map == false) {
      return UpdateConnectionState({});
    }
    return UpdateConnectionState(rawData["update_connection_state"] as Map);
  } catch (e) {
    return UpdateConnectionState({});
  }
}
set update_connection_state (UpdateConnectionState value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set update_connection_state(UpdateConnectionState value) {
  rawData["update_connection_state"] = value.toJson();
}