updateCall property

UpdateCall? updateCall

New call was created or information about a call was updated

Implementation

UpdateCall? get updateCall {
  if (this is UpdateCall) {
    return this as UpdateCall;
  }
  return null;
}