copyWith method
Implementation
NewRequestItemModel copyWith({
ChatUIKitProfile? profile,
String? reason,
}) {
return NewRequestItemModel(
profile: profile ?? this.profile,
reason: reason ?? this.reason,
);
}
NewRequestItemModel copyWith({
ChatUIKitProfile? profile,
String? reason,
}) {
return NewRequestItemModel(
profile: profile ?? this.profile,
reason: reason ?? this.reason,
);
}