copyWith method

SIPTrunkOutboundCallResponse copyWith({
  1. bool? success,
  2. String? message,
  3. dynamic conversationId,
  4. dynamic sipCallId,
})

Implementation

SIPTrunkOutboundCallResponse copyWith(
    {bool? success,
    String? message,
    dynamic conversationId,
    dynamic sipCallId}) {
  return SIPTrunkOutboundCallResponse(
      success: success ?? this.success,
      message: message ?? this.message,
      conversationId: conversationId ?? this.conversationId,
      sipCallId: sipCallId ?? this.sipCallId);
}