copyWith method

GetSocialMediaConnectionResponse copyWith({
  1. String? status,
  2. String? message,
  3. int? code,
  4. String? data,
})

Implementation

GetSocialMediaConnectionResponse copyWith({
  String? status,
  String? message,
  int? code,
  String? data,
}) {
  return GetSocialMediaConnectionResponse(
    status: status ?? this.status,
    message: message ?? this.message,
    code: code ?? this.code,
    data: data ?? this.data,
  );
}