copyWith method

NewRequestItemModel copyWith({
  1. ChatUIKitProfile? profile,
  2. String? reason,
})

Implementation

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