copyWith method

ChatJoinRequest copyWith({
  1. int? userId,
  2. int? date,
  3. String? bio,
})

Implementation

ChatJoinRequest copyWith({
  int? userId,
  int? date,
  String? bio,
}) =>
    ChatJoinRequest(
      userId: userId ?? this.userId,
      date: date ?? this.date,
      bio: bio ?? this.bio,
    );