copyWith method

Call copyWith({
  1. String? uuid,
  2. String? address,
  3. bool? outgoing,
  4. CallState? callState,
})

Implementation

Call copyWith(
    {String? uuid, String? address, bool? outgoing, CallState? callState}) {
  return Call(
      uuid: uuid ?? this.uuid,
      address: address ?? this.address,
      outgoing: outgoing ?? this.outgoing,
      callState: callState ?? this.callState);
}