copyWith method

AcceptCall copyWith({
  1. int? callId,
  2. CallProtocol? protocol,
})

Implementation

AcceptCall copyWith({
  int? callId,
  CallProtocol? protocol,
}) =>
    AcceptCall(
      callId: callId ?? this.callId,
      protocol: protocol ?? this.protocol,
    );