copyWith method

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

Implementation

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