copyWith method

DeleteVoiceResponseModel copyWith({
  1. String? status,
})

Implementation

DeleteVoiceResponseModel copyWith({String? status}) {
  return DeleteVoiceResponseModel(status: status ?? this.status);
}