copyWith method

AddSocialMediaResponse copyWith({
  1. String? status,
  2. String? message,
  3. AddSocialMediaData? data,
})

Implementation

AddSocialMediaResponse copyWith({
  String? status,
  String? message,
  AddSocialMediaData? data,
}) {
  return AddSocialMediaResponse(
    status: status ?? this.status,
    message: message ?? this.message,
    data: data ?? this.data,
  );
}